WebApplicationContext初始化

Spring 提供了用于启动WebApplicaionContext的Web容器监听器.

通过Web容器监听器引导:

 <!-- 1  指定配置文件 --> 
  <context-param>
       <param-name>contextConfigLocation</param-name>
       <param-value>/WEB-INF/beans.xml</param-value>
  </context-param>
 <!-- 2 声明Web容器监听器 -->
  <listener>
      <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>



posted on 2014-03-29 09:57  吴一达  阅读(169)  评论(0编辑  收藏  举报

导航