有没有一种方法可以在Spring MVC应用程序中使用web.xml加载上下文?
Answers:
从春季文档
Spring可以轻松集成到任何基于Java的Web框架中。您需要做的就是在web.xml中声明ContextLoaderListener并使用contextConfigLocation 设置要加载的上下文文件。
的<context-param>
:
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
然后,您可以使用WebApplicationContext来获取bean的句柄。
WebApplicationContext ctx = WebApplicationContextUtils.getRequiredWebApplicationContext(servlet.getServletContext());
SomeBean someBean = (SomeBean) ctx.getBean("someBean");
您还可以相对于当前类路径指定上下文位置,这可能是更好的选择
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
*
什么?没有它就IOException parsing XML document from ServletContext resource [/>classpath:/applicationContext.xml]; nested exception is java.io.FileNotFoundException: Could not open ServletContext resource [/>classpath:/applicationContext.xml]
您还可以在定义Servlet本身时加载上下文(WebApplicationContext)
<servlet>
<servlet-name>admin</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/spring/*.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>admin</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
而不是(ApplicationContext)
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext*.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
或者可以一起做。
仅使用WebApplicationContext的缺点是,它将仅为此特定的Spring入口点(DispatcherServlet
)加载上下文,其中与上述方法一样,将为多个入口点(例如,Webservice Servlet, REST servlet
等)加载上下文
通过加载的上下文ContextLoaderListener
将INFACT是特异性针对DisplacherServlet加载的父上下文。因此,基本上,您可以在应用程序上下文中加载所有业务服务,数据访问或存储库Bean,并分离出控制器,将解析器Bean查看到WebApplicationContext。