J2EE进阶(五)Spring在web.xml中的配置

 J2EE进阶(五)Spring在web.xml中的配置

前言     

     在实际项目中spring的配置文件applicationcontext.xml是通过spring提供的加载机制自动加载到容器中。在web项目中,配置文件加载到web容器中进行解析。目前,spring提供了两种加载器,以供web容器的加载:一种是ContextLoaderListener,另一种是ContextLoaderServlet。这两种在功能上完全相同,只是前一种是基于Servlet2.3版本中新引入的Listener接口实现,而后一种是基于Servlet接口实现,以下是这两种加载器在web.xml中的配置应用:

ContextLoaderListener

 


  
  1. <listener>
  2. <listener-class>org.springframework.context.ContextLoaderListener</listener-class>
  3. </listener>

 

ContextLoaderServlet

 


  
  1. <servlet>
  2. <servlet-name>context</servlet-name>
  3. <servlet-class>org.springframework.context.ContextLoaderServlet</servlet-class>
  4. <load-on-startup>1</load-on-startup>
  5. </servlet>

 

     通过上面的配置,web容器会自动加载applicationcontext.xml初始化。

     如果需要指定配置文件的位置,可通过context-param加以指定:

 


  
  1. <context-param>
  2. <param-name>contextConfigLocation</param-name>
  3. <param-value>/WEB-INF/myApplicationContext.xml</param-value>
  4. </context-param>

 

     之后,可以通过WebApplicationContextUtils.getWebApplicationContext方法在web应用中获取applicationcontext的引用。

美文美图

文章来源: shq5785.blog.csdn.net,作者:No Silver Bullet,版权归原作者所有,如需转载,请联系作者。

原文链接:shq5785.blog.csdn.net/article/details/51923674

(完)