当前位置: 代码迷 >> Web前端 >> web项目如何启动spring容器
  详细解决方案

web项目如何启动spring容器

热度:257   发布时间:2012-08-15 16:57:16.0
web项目怎么启动spring容器
1. 首先,在web.xml中配置spring的配置文件的位置
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:spring/spring-applicationContext.xml</param-value>
</context-param>
注:context-param中定义的是application范围内的参数,存放在servletcontext中

2. 在web.xml中定义listener
<listener>
    <listener-class>com.test.ApplicationContextListener</listener-class>
</listener>
   ApplicationContextListener是org.springframework.web.context.ContextLoaderListener的子类。ContextLoaderListener实现ServletContextListener,读取contextConfigLocation中定义的xml文件,如果不设置contextConfigLocation的初始参数则默认会读取WEB-INF路径下的 application.xml文件。ContextLoaderListener读取这些XML文件并产生 WebApplicationContext对象,然后将这个对象放置在ServletContext的属性里,这样我们只要可以得到Servlet就可以得到WebApplicationContext对象,并利用这个对象访问spring容器管理的bean。
  相关解决方案