我是 Spring MVC 的新手。我有一个Web应用程序。我有以下配置:
<welcome-file-list>
<welcome-file>list.html</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
我是否需要将以下行添加到 web.xml 文件中?
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
答案 0 :(得分:26)
是的,您需要在ContextLoaderListener
中添加web.xml
,
只有 if 您希望在加载应用时加载其他Spring上下文xml文件
你可以将它们指定为
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-security.xml
</param-value>
</context-param>
答案 1 :(得分:15)
仅当您有两个config xml文件时。一个是Services / DAO,另一个是Controller。如果您已在一个spring配置文件中配置了所有内容,则不需要ContextLoaderListener
,只需调度程序servlet即可。
建议将配置拆分为两个,并使用ContextLoaderListener
创建根应用程序上下文和调度程序servlet以创建Web层应用程序上下文。
答案 2 :(得分:5)
它是可选的,你不仅仅需要Spring MVC(DispatcherServlet
会这样做)。但是,必须使用
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
只需一条评论,如果使用ContextLoaderListener
,则必须添加DelegatingFilterProxy
:
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/admin</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring-security.xml
</param-value>
</context-param>
也在你的web.xml中。抱歉四年太晚了。干杯
答案 3 :(得分:3)
<servlet>
<servlet-name>spring</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml,WEB-INF/spring-security.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>UR_PATTERN</url-pattern>
</servlet-mapping>
这对我来说很好。
答案 4 :(得分:0)
这可能有点高级,在我的企业应用程序中,他们构造了自己的侦听器类,并将其放在web.xml中。在启动时,此自定义的侦听器将扫描应用程序以收集所有信息,包括资源,外部连接,服务器信息ip,罐子等。该信息可在网页中访问。