What makes hot deployment a “hard problem”?

后端 未结 4 1322
梦如初夏
梦如初夏 2020-11-28 20:17

At work, we\'ve been having a problem with \"PermGen out of memory\" exceptions, with the team lead deciding it was a bug in the JVM - something related to hot-deployment of

4条回答
  •  抹茶落季
    2020-11-28 20:53

    Sun JVM has PermGen space fixed, and eventually it's all consumed (yes, apparently due to a bug in classloader-related code) => OOM.

    If you can use another vendor's JVM (e.g. Weblogic one), it dynamically extends PermGen space, so you'll never get permgen-related OOM.

提交回复
热议问题