zoukankan      html  css  js  c++  java
  • jetty 9.2 + java.lang.OutOfMemoryError: PermGen space 解决办法

    
    

    我这边的异常发生情况是生产环境   环境是 jetty 9.2   jdk7,

    
    

    百度了很久没找到解决办法,搜到的倒是不少,不过都没什么鸟用,在Google翻到了,搬运一下。





    java.lang.OutOfMemoryError: PermGen space
    2018-03-08 18:06:58.428:WARN:oejs.HttpChannel:qtp1967670511-19: /wxapp/wxUser/order?code=011Q7slk2vtYzG08uRnk2vhllk2Q7slf&state=1 javax.servlet.ServletException: org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.OutOfMemoryError: PermGen space at org.eclipse.jetty.server.handler.HandlerCollection.handle(HandlerCollection.java:130) at org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:97) at org.eclipse.jetty.server.Server.handle(Server.java:499) at org.eclipse.jetty.server.HttpChannel.handle(HttpChannel.java:311) at org.eclipse.jetty.server.HttpConnection.onFillable(HttpConnection.java:258) at org.eclipse.jetty.io.AbstractConnection$2.run(AbstractConnection.java:544) at org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:635) at org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:555) at java.lang.Thread.run(Thread.java:745)

     搬运工------------------------------》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》》

    In Jetty 9.2+
    
    In your ${jetty.base} directory, add the jvm module + default configuration
    
    [user]$ cd mybase
    [mybase]$ java -jar /path/to/jetty-distribution/start.jar --add-to-start=jvm
    INFO: jvm             initialised in ${jetty.base}/start.ini (appended)
    [mybase]$ 
    Now go edit your ${jetty.base}/start.ini and configure the properties, uncomment those things that you want (don't forge to uncomment --exec) jetty to use when starting itself up.
    
    Example:
    
    # --------------------------------------- 
    # Module: jvm
    --module=jvm
    ## JVM Configuration
    ## If JVM args are include in an ini file then --exec is needed
    ## to start a new JVM from start.jar with the extra args.
    ##
    ## If you wish to avoid an extra JVM running, place JVM args
    ## on the normal command line and do not use --exec
    --exec
    -Xmx1024m
    -Xmn512m
    -XX:MaxPermSize=128m
    # -XX:+UseConcMarkSweepGC
    # -XX:ParallelCMSThreads=2
    # -XX:+CMSClassUnloadingEnabled
    # -XX:+UseCMSCompactAtFullCollection
    # -XX:CMSInitiatingOccupancyFraction=80
    # -verbose:gc
    # -XX:+PrintGCDateStamps
    # -XX:+PrintGCTimeStamps
    # -XX:+PrintGCDetails
    # -XX:+PrintTenuringDistribution
    # -XX:+PrintCommandLineFlags
    # -XX:+DisableExplicitGC
    # -Dorg.apache.jasper.compiler.disablejsr199=true
  • 相关阅读:
    Java的三种代理模式
    关于C# 中的Attribute 特性
    jvm虚拟机原理1
    Java和C#中的接口对比(有你不知道的东西)
    c# 方法参数(传值,传引用,ref,out,params,可选参数,命名参数)
    Java运行时,各种类型存储介绍
    Java中的内存处理机制和final、static、final static总结
    Debug目录、Release目录,bin目录、obj目录,vshost.exe.config文件、.exe.config文件分析【C#】
    C#有关的vshost、exe、config格式说明
    C#中的程序集和命名空间
  • 原文地址:https://www.cnblogs.com/lewskay/p/8530137.html
Copyright © 2011-2022 走看看