tomcat内存检测

来源:互联网 发布:复杂网络就业方向 编辑:程序博客网 时间:2024/05/17 15:20

tomcat6以上版本增加了内存检测的功能,有时避免显示相应的内容,可以采用下面方式就行屏蔽。


<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener" />


下面可以进一步屏蔽gc问题


<Listener className="org.apache.catalina.core.JreMemoryLeakPreventionListener"
gcDaemonProtection="false"/>