使用web.xml在Spring中加载上下文


Answers:


118

从春季文档

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");

有关更多信息,请参见http://static.springsource.org/spring/docs/2.5.x/api/org/springframework/web/context/support/WebApplicationContextUtils.html


2
如何访问上下文?并且您是说一旦应用程序启动,上下文就会随Spring Context一起加载?请澄清一下,因为我是Spring的新手。感谢您的回复
-Ganesh

这是与WebApplicationContextUtils相关的最新API的链接。docs.spring.io/spring-framework/docs/current/javadoc-api/org/…–
Ajitesh,

34

您还可以相对于当前类路径指定上下文位置,这可能是更好的选择

<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]
行不通

1
我刚刚找到了一个博客帖子,回答了我关于classpath* 这里的问题。
DavidS

17

您还可以在定义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。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.