spring中提供了一个名为 org.springframework.web.util.IntrospectorCleanupListener的监听器。它主要负责处理由 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应用关闭之后,你会看到此应用的所有静态类资源(例如单例).这个错误当然不是由这个类自身引起的.
在web.xml中添加:
<!-- 防止内存泄露 --><listener>
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class>
</listener>
相关推荐
在Spring框架的学习中,我们经常会接触到各种组件和机制,其中之一就是`IntrospectorCleanupListener`。这个类在Spring源码中扮演着一个重要的角色,主要目的是解决与`Introspector`相关的内存泄漏问题。首先,我们...
org.springframework.web.util.IntrospectorCleanupListener.class org.springframework.web.util.JavaScriptUtils.class org.springframework.web.util.Log4jConfigListener.class org.springframework.web.util....
`<context-param>`中的`webAppRootKey`定义了Web应用程序的根目录键,而`<listener>`标签注册了两个监听器:`ContextLoaderListener`和`IntrospectorCleanupListener`。 `ContextLoaderListener`是Spring提供的一种...
<listener-class>org.springframework.web.util.IntrospectorCleanupListener <servlet-name>CXFService <servlet-class>org.apache.cxf.transport.servlet.CXFServlet <servlet-name>CXFService ...
为了避免因所有bean一开始就实例化导致的内存溢出问题,可以通过在`web.xml`中配置`IntrospectorCleanupListener`监听器并设置`lazy-init="true"`来延迟bean的初始化。 **2. DI(依赖注入)** DI是IoC的具体实现,...
- **IntrospectorCleanupListener**:确保由 Spring 管理的 JavaBeans 能够正常初始化和销毁。 - **XFireServlet**:配置名为 `XFireServlet` 的 Servlet,用于处理 `/services/*` 的请求。 4. **Web 服务接口和...
在`web.xml`中,我们需要配置Spring的`ContextLoaderListener`和`IntrospectorCleanupListener`监听器,以及Xfire的Servlet,以启动和管理Spring容器以及Xfire服务。 在`web.xml`的Spring配置部分,我们设置了`...
<listener-class>org.springframework.web.util.IntrospectorCleanupListener ``` 这段代码主要包含了以下几个关键配置: - **Spring ApplicationContext配置**:定义了Spring配置文件的位置,通常这些文件会...
IntrospectorCleanupListener InvalidClientIDException InvalidDataAccessApiUsageException InvalidDataAccessResourceUsageException InvalidDestinationException InvalidInvocationException ...
`ContextLoaderListener`监听器负责在服务器启动时加载Spring上下文,而`IntrospectorCleanupListener`则是用来清理JavaBean introspector,避免内存泄漏。 接下来是XFire的配置。我们定义了一个名为`xfire`的...
3. `IntrospectorCleanupListener`防止内存泄漏,清理Spring自动发现的JavaBeans属性信息。 然后,`DispatcherServlet`是Spring MVC的核心,它负责处理所有请求,并根据`spring-mvc.xml`配置文件进行调度。`load-on...
- **IntrospectorCleanupListener**:这是一个Spring提供的监听器,用于防止`java.beans.Introspector`类引发的内存泄漏问题。将其配置在`ContextLoaderListener`之前可以确保先清理再初始化Spring容器。 - **...
<listener-class>org.springframework.web.util.IntrospectorCleanupListener ``` - **`IntrospectorCleanupListener`**:用于清理JavaBeans Introspector缓存,防止内存泄漏问题。 ### 2.2 Hibernate配置 为了...
<listener-class>org.springframework.web.util.IntrospectorCleanupListener ``` `IntrospectorCleanupListener`会在应用启动和关闭时执行清理操作,确保不会因为缓存未释放而导致内存泄露。 #### 三、...
本文介绍了Listener以下几个方面的内容: · Listener的定义与作用 · Listener的分类与使用 ServletContext监听 Session监听 Request监听 ... Spring使用IntrospectorCleanupListener清理