【发布时间】:2020-06-03 09:42:33
【问题描述】:
weblogic 服务器中的内存泄漏。
我们服务器的内存每天都变得饱和,我们被要求每天重新启动。 在代码中,没有什么特别的东西会使内存饱和。但是,堆转储显示占用更多内存的类是
weblogic.management.mbeanservers.internal.MBeanCICInterceptor (retained heap 5376058)
and the weblogic.cluster.replication.ReplicationManager class (retained heap 2690546).
weblogic.xml:
<session-descriptor>
<cookie-name> OURPROJECT_SESSIONID </cookie-name>
<persistent-store-type> replicated_if_clustered</persistent-store-type>
</session-descriptor>
在 weblogic.xml 中进行配置是否会导致内存泄漏?
【问题讨论】:
标签: jpa memory-leaks ejb weblogic replication