org.springframework.web.util.IntrospectorCleanupListener监听器的作用


spring中的提供了一个名为org.springframework.web.util.IntrospectorCleanupListener的监听器。

这个监听器的用法是,在web.xml中添加:

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

它主要负责处理由JavaBeans Introspector的使用而引起的缓冲泄露。

spring中对它的描述如下:

它是一个在web应用关闭的时候,清除JavaBeans Introspector的监听器。web.xml中注册这个listener,可以保证在web 应用关闭的时候释放与掉这个web 应用相关的class loader 和由它管理的类。

如果你使用了JavaBeans Introspector来分析应用中的类,Introspector 缓冲会保留这些类的引用,结果在你的应用关闭的时候,这些类以及web 应用相关的class loader没有被垃圾回收,不幸的是,清除Introspector的唯一方式是刷新整个缓冲,这是因为我们没法判断哪些是属于你的应用的引用.所以删除被缓冲的introspection会导致把这台电脑上的所有应用的introspection都删掉.需要注意的是,spring 托管的bean不需要使用这个监听器,因为spring它自己的introspection所使用的缓冲在分析完一个类之后会被马上从javaBeans Introspector缓冲中清除掉,应用程序中的类从来不直接使用JavaBeans Introspector,所以他们一般不会导致内存资源泄露。但是一些类库和框架的整合使用往往会产生这个问题,例如:Struts 和Quartz。由此造成的内存泄漏会导致整个的web应用的类加载器不能进行垃圾回收,在web应用关闭之后,你会看到此应用的所有静态类资源(例如单例),这个错误当然不是由这个类自身引起的。




你可能感兴趣的:(spring,Web,quartz,struts,Class,javabeans)