ContextLoaderListener的作用是什么

每一个整合spring框架的项目中,总是不可避免地要在web.xml中加入这样一段配置。

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring-config.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
ContextLoaderListener的作用就是启动Web容器时,读取在contextConfigLocation中定义的xml文件,自动装配ApplicationContext的配置信息,并产生WebApplicationContext对象

然后将这个对象放置在ServletContext的属性里,这样我们只要得到Servlet就可以得到WebApplicationContext对象,并利用这个对象访问spring容器管理的bean


简单来说,就是上面这段配置为项目提供了spring支持,初始化了Ioc容器

posted @ 2022-04-08 16:29  小魏同学呀  阅读(96)  评论(0)    收藏  举报