首页 > 编程语言 > 详细

spring config detail (持续更新中...)

时间:2015-10-28 15:52:16      阅读:295      评论:0      收藏:0      [点我收藏+]

spring config 的一些实用细节。做个小小的总结,会不断更新......

1.contextConfigLocation

<1>.contextConfigLocation 

在web.xml中定义,通过contextConfigLocation 来配置spring,用来定义要载入的spring 配置文件。

<context-param>
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath:applicationContext.xml</param-value>
</context-param>

如果没有指定的话,默认加载/WEB-INF/下的 applicationContext.xml.

如果要配置多个文件,param-value 用 逗号分割。

<2>.ContextLoaderListener

对应 listener 配置

 <listener>   
       <listener-class> org.springframework.web.context.ContextLoaderListener </listener-class >   
  </listener>



spring config detail (持续更新中...)

原文:http://my.oschina.net/pingjiangyetan/blog/523108

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!