contextConfigLocation在spring中的作用

启动项目时,首先进入web.xml文件。

在web.xml中通过contextConfigLocation配置spring,contextConfigLocation参数定义了要装入的 Spring 配置文件。如果想装入多个配置文件,可以在 标记中用逗号作分隔符。

在web.xml里配置Listener

xml 代码如下:  
     
       org.springframework.web.context.ContextLoaderListener    
 

如果在web.xml里给该Listener指定要加载的xml,如:

xml代码如下:

     

           contextConfigLocation 

           applicationContext.xml

     

默认会去/WEB-INF/下加载applicationContext.xml;也可手动配置加载路径。

 

在一个团队使用Spring的实际项目中,应该需要多个Spring的配置文件,如何使用和交叉引用的问题:

    多个配置文件可以在web.xml里分号隔开写入,如:
    <context-param>
         <param-name>contextConfigLocationparam-name
>
         
               applicationContext-database.xml,applicationContext.xml
          
     context-param>


     多个配置文件里的交叉引用可以用ref的external或bean解决
   例如:

 

applicationContext.xml
     
        
             namebean
"/>
          
    

dbBean在applicationContext-database.xml中

你可能感兴趣的:(J2EE)