尝试运行 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>
有人可以在这方面帮助我吗?