Spring中,applicationContext.xml 配置文件在web.xml中的配置详解

转自http://www.cnblogs.com/cczz_11/p/4363314.html


一、首先写一下代码结构。



Spring中,applicationContext.xml 配置文件在web.xml中的配置详解_第1张图片

二、再看web.xml中的配置情况。


  SpringMVC
  
    index.html
    index.htm
    index.jsp
    default.html
    default.htm
    default.jsp
  
  
            contextConfigLocation
            
            /WEB-INF/classes/config/applicationContext.xml
  
  
  
    org.springframework.web.context.ContextLoaderListener
  
      
        springmvc 
        org.springframework.web.servlet.DispatcherServlet
        
           contextConfigLocation
           
           /WEB-INF/classes/config/Springmvc-servlet.xml
        
        1 
      
     
        springmvc 
        /  
    
 


三、下面是对配置文件的说明。

  
    org.springframework.web.context.ContextLoaderListener
  


ContextLoaderListener是Spring的监听器,它的作用就是启动Web容器时,自动装配ApplicationContext的配置信息。因为它实现了ServletContextListener这个接口,在web.xml配置这个监听器,启动容器时,就会默认执行它实现的方法。

  
            contextConfigLocation
            
            /WEB-INF/classes/config/applicationContext.xml
  


这段配置是用于指定applicationContext.xml配置文件的位置,可通过context-param加以指定:


这里需要搞清楚classpath是什么,以及classpath:和classpath*有何区别:


1. 首先 classpath是指 WEB-INF文件夹下的classes目录


2. classpath 和 classpath* 区别: 
classpath:只会到你的class路径中查找找文件; 
classpath*:不仅包含class路径,还包括jar文件中(class路径)进行查找. 


 


如果applicationContext.xml配置文件存放在src目录下,就好比上面的代码结构中的存放位置,那么在web.xml中的配置就如下所示:

    
        contextConfigLocation
        classpath:applicationContext.xml
    


如果applicationContext.xml配置文件存放在WEB-INF下面,那么在web.xml中的配置就如下所示:

    
        contextConfigLocation
        WEB-INF/applicationContext*.xml
    


需要注意的是,部署到应用服务器后,src目录下的配置文件会和class文件一样,自动copy到应用的 classes目录下,spring的 配置文件在启动时,加载的是web-info目录下的applicationContext.xml, 运行时使用的是web-info/classes目录下的applicationContext.xml。因此,不管applicationContext.xml配置文件存放在src目录下,还是存放在WEB-INF下面,都可以用下面这种方式来配置路径:

    
        contextConfigLocation
        WEB-INF/applicationContext*.xml
    


当有多个配置文件加载时,可采用下面代码来配置:


复制代码
    
        contextConfigLocation
         
            classpath*:conf/spring/applicationContext_core*.xml, 
            classpath*:conf/spring/applicationContext_dict*.xml,
            classpath*:conf/spring/applicationContext_hibernate.xml,
            ......
        
    


复制代码
也可以用下面的这种方式:

    
        contextConfigLocation
        classpath*:**/applicationContext-*.xml
    


"**/"表示的是任意目录; 


"**/applicationContext-*.xml"表示任意目录下的以"applicationContext-"开头的XML文件。 


Spring配置文件最好以"applicationContext-"开头,且最好把所有Spring配置文件都放在一个统一的目录下,也可以分模块创建。

你可能感兴趣的:(Spring中,applicationContext.xml 配置文件在web.xml中的配置详解)