1. 程式人生 > >springmvc配置監聽

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能被垃圾回收器正確回收