web项目启动Spring容器

Posted zhaozheng7758

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web项目启动Spring容器相关的知识,希望对你有一定的参考价值。

       今天在重新搭建一套web框架,只想采用spring,其它框架均用不到。使用java应用程序进行测试,完全没问题。考虑到做为web应用程序,那就必须要在服务器启动时,能够将spring的上下文配置加载进去,并启动Spring容器,如何做呢?一般在web项目中启动Spring容器,只需要在web.xml中新增 一个配置即可,具体的配置示例如下所示:

1. 首先,在web.xml中配置spring的配置文件的位置 

<context-param> 
    <param-name>contextConfigLocation</param-name> 
    <param-value>classpath:config/applicationContext.xml</param-value> 
</context-param> 
注:context-param中定义的是application范围内的参数,存放在servletcontext中 

2. 需要在web.xml中定义listener 
<listener> 
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
</listener> 

 ContextLoaderListener实现ServletContextListener,读取contextConfigLocation中定义的xml文件,如果不设置contextConfigLocation的初始参数则默认会读取WEB-INF路径下的 application.xml文件。ContextLoaderListener读取这些XML文件并产生 WebApplicationContext对象,然后将这个对象放置在ServletContext的属性里,这样我们只要可以得到Servlet就可以得到WebApplicationContext对象,并利用这个对象访问spring容器管理的bean。          经过上述的配置,即可以在应用服务器启动时,将spring容器启动起来。

以上是关于web项目启动Spring容器的主要内容,如果未能解决你的问题,请参考以下文章

Spring容器启动过程

spring源码:web容器启动(li)

Spring容器启动过程

Spring Boot web容器启动

Web的后台运作过程

创建ssm项目