contextconfiglocation
在web.xml中通过contextconfiglocation配置Spring,contextConfigLocation参数定义了要装入的 Spring 配置文件。
1. 在web.xml里配置需要加载的spring配置文件。
如果要装入多个配置文件,在<param-value>标记中用逗号作分隔符即可。
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-base.xml,classpath:spring-another.xml</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:spring-base.xml,classpath:spring-another.xml</param-value>
</context-param>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:**/spring-*.xml</param-value>
</context-param>
2. 在web.xml里配置Listener,本Listener会去加载第一步中指定的配置文件。
<listener>
<listener-class>org.springframework.web.context.contextloaderlistener</listener-class>
</listener>
3. 如果指定了要加载的文件,则会去加载相应的xml,而不会去加载/WEB-INF/下的APPlicationContext.xml。(指定加载即是第1步的配置)
如果没有指定的话,默认会去/WEB-INF/下加载applicationContext.xml。
4. 多个配置文件里的交叉引用可以用ref的external或bean解决
<bean id="userService" class="domain.user.service.impl.UserServiceImpl">
<property name="dbbean">
<ref bean="dbBean"/>
</property>
</bean>
相关阅读
转自:http://www.cnblogs.com/chasewade/p/3387390.html Java中System.setProperty()用法 /** 设置指定键对值的系统属性* setPro
移动互联网红利期已过,多数产品选择站队生存,少数垂直类产品或突出重围或直接或间接的等待站队,这可能是多数互联网企业的生存现状。
中证登 全名是中国证券登记结算有限公司(China Securities Depository and Clearing Company Limited,CSDCC),简称是中国结算,为证
jdbc 中 excute executeUpdate的用法作用
感谢阅读:我们一帮刚毕业的同学维护了一个公众号,旨在分享一下学习或者面试上的坑。刚兴趣的同学可以关注一起学习。 Statement
<1>什么是web服务器 "网络服务"(Web Service)的本质,就是通过网络调用其他网站的资源。 Web Service架构和云 如果一个软件的主要部