OutOfMemoryError: PermGen Space — Jasper Report with Spring running on Tomcat

前端 未结 5 1154
伪装坚强ぢ
伪装坚强ぢ 2021-01-02 11:00

Our web application encounter a complicated situation

It is a Spring application developed by STS/Tomcat 7. After the application been integrated with <

5条回答
  •  粉色の甜心
    2021-01-02 11:44

    Try setting these parameters in your VM. These should enable GC cleaning your permGen.

    -XX:+UseConcMarkSweepGC
    -XX:+CMSPermGenSweepingEnabled
    -XX:+CMSClassUnloadingEnabled
    

提交回复
热议问题