springmvc配置监听

在springmvc配置中web.xml中有两个监听:

<listener>
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
</listener>


<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
使用其中任意一个都可以让项目正常运行,同时使用两个也可以让项目正常运行,那么这两个有什么区别呢?

第一个是spring的核心配置参考:http://my.oschina.net/pkpk1234/blog/61971

第二个

如果有的框架或者程序用到了JavaBeans Introspector,没有进行清理工作,比如quartz、struts配置IntrospectorCleanupListener使那些javabean能被垃圾回收器正确回收

你可能感兴趣的:(springmvc配置监听)