Spring プロジェクトを実行しようとすると、次のエラーが発生します
HTTP Status 500 - java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered?
私のにリスナーを追加したにもかかわらずweb.xml
。私はまだこのエラーが発生しています。以下は、 web.xml に追加したリスナーです。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/HelloWebRedirect-servlet.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
誰かがこの点で私を助けることができますか?