contextConfigLocation在spring中的作用

来源:互联网 发布:65是什么意思网络用语 编辑:程序博客网 时间:2024/05/17 06:01

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

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

在web.xml里配置Listener

xml 代码如下:  
  <listener>   
       <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class >   
  </listener>

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

xml代码如下:

<!-- spring config -->

      <context-param>

           <param-name>contextConfigLocation</param-name> 

           <param-value>applicationContext.xml</param-value>

      </context-param>

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

 

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

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


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

 

applicationContext.xml
    <bean id="userService" class="domain.user.service.impl.UserServiceImpl"> 
        <property name="namebean">
             <ref bean="namebean"/>
         </property> 
    </bean>

dbBean在applicationContext-database.xml中

0 0
原创粉丝点击