`
yeelor
  • 浏览: 417956 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

mvn jetty:run出现OutOfMemoryError: PermGen space的处理

 
阅读更多
处理方法:
VM参数中添加如下配置:
-server -Xms256m -Xmx512m -XX:PermSize=256m -XX:MaxPermSize=256m -XX:+CMSClassUnloadingEnabled -XX:+PrintGCDetails -Xloggc:%M2_HOME%/gc.log -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=%M2_HOME%/java_pid<pid>.hprof
其中参数说明如下:
-XX:+CMSPermGenSweepingEnabled : 允许permgenspace的垃圾回收
-XX:+CMSClassUnloadingEnabled : allows the garbage collector to remove even classes from the memory
-XX:PermSize=256M -XX:MaxPermSize=256M : raises the amount of memory allocated to the permgenspace
 
 
 
试过在系统环境变量中添加 MAVEN_OPTS="-Xms40m -Xmx512m -XX:PermSize=512m" 不行,在eclipse.ini文件中添加 -Xms40m -Xmx512m -XX:PermSize=512m 也不行。
  • 大小: 23.1 KB
  • 大小: 19.8 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics