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

时间:2011-06-23 08:38:05

标签: java spring-mvc web.xml

有没有办法在Spring MVC应用程序中使用web.xml加载上下文?

3 个答案:

答案 0 :(得分:117)

来自春季文档

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

答案 1 :(得分: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>

答案 2 :(得分: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加载的上下文实际上将是专门为DisplacherServlet加载的上下文。因此,基本上您可以在应用程序上下文中加载所有业务服务,数据访问或存储库bean,并将控制器分离出来,将解析程序bean视图到WebApplicationContext。