JBoss 7, java.lang.OutOfMemoryError: PermGen space

后端 未结 4 1118
难免孤独
难免孤独 2020-12-07 11:37

I\'ve hit this error where the CPU usage goes to its limits and JBoss needs a restart (java.lang.OutOfMemoryError: PermGen space).

I found a solution f

4条回答
  •  日久生厌
    2020-12-07 12:23

    The VM parameter is:

    -XX:MaxPermSize=256M
    

    Just make it large enough that you don't hit the limit.

    Broadly speaking, perm gen memory is used for objects associated with Classes and interned Strings. You shouldn't run out unless you have use lot of different classes.

提交回复
热议问题