zoukankan      html  css  js  c++  java
  • tomcat服务器java.lang.OutOfMemoryError: PermGen space

    一挂就报内存溢出 下面是TOMCAT日志 
    JAVA程序是没有报错, 

    Nov 24, 2009 4:07:02 PM org.apache.catalina.core.ApplicationDispatcher invoke 
    SEVERE: Servlet.service() for servlet jsp threw exception 
    java.lang.OutOfMemoryError: PermGen space 
    Nov 24, 2009 4:07:02 PM org.apache.catalina.core.StandardWrapperValve invoke 
    SEVERE: Servlet.service() for servlet action threw exception 
    java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "http-8180-36" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "http-8180-35" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1" java.lang.OutOfMemoryError: 

    PermGen space 
    Exception in thread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0" java.lang.OutOfMemoryError: 

    PermGen space 
    Exception in thread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2" java.lang.OutOfMemoryError: 

    PermGen space 
    Login Success! 
    Exception in thread "http-8180-23" java.lang.OutOfMemoryError: PermGen space 
    ParametersInterceptor - [setParameters]: Unexpected Exception caught setting 'action' on 'class 

    com.szyt.ajax.SuggestedMessage: Error setting expression 'action' with value '[Ljava.lang.String;@14653f5 
    ParametersInterceptor - [setParameters]: Unexpected Exception caught setting 'verificationStatus' on 'class 

    com.szyt.ajax.SuggestedMessage: Error setting expression 'verificationStatus' with value '[Lj 
    Exception in thread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#2" java.lang.OutOfMemoryError: 

    PermGen space 
    Exception in thread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#0" java.lang.OutOfMemoryError: 

    PermGen space 
    Exception in thread "http-8180-14" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "com.mchange.v2.async.ThreadPoolAsynchronousRunner$PoolThread-#1" java.lang.OutOfMemoryError: 

    PermGen space 
    Exception in thread "Thread-12" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "http-8180-37" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "http-8180-25" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "Timer-0" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "Thread-10" java.lang.OutOfMemoryError: PermGen space 
    Exception in thread "http-8180-39" java.lang.OutOfMemoryError: PermGen space

    解决方案:

    非堆空间不足,其实设置已经很大了-XX:PermSize256M -XX:MaxPermSize:512M

    应该是 PermGen space 在tomcat 默认是 64m 通常足够用了,溢出原因看 http://wiki.apache.org/tomcat/FAQ/Deployment,其中关键的是

    引用:
    Because the Classloader (and the Class objects it loaded) cannot be recycled.


    其它参考 http://wiki.apache.org/tomcat/OutOfMemory 

    考虑使用 -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled
    _________________

    具体联系我:

  • 相关阅读:
    图像切割之(五)活动轮廓模型之Snake模型简单介绍
    拓扑排序的原理及事实上现
    理解class.forName()
    Java中StringBuilder的清空方法比較
    Java实现BASE64编解码
    KMP算法具体解释(贴链接)
    基于PCM2912a的USB声卡设计
    51. 腾讯面试题:一个二叉树,中序遍历,找一个节点的后一个节点
    Handler和HandlerThread
    Nuget-QRCode:jquery-qrcode
  • 原文地址:https://www.cnblogs.com/hexiweb/p/3988765.html
Copyright © 2011-2022 走看看