How to increase heap size for jBoss server

前端 未结 9 1262
星月不相逢
星月不相逢 2020-12-31 05:14

I have an upload files scenario in my project. When I\'m trying to upload the large files it\'s giving me an OutOfMemory error. That error is related to Java heap size.

9条回答
  •  我在风中等你
    2020-12-31 05:42

    Add following option in jboss in bin/standalone.conf.bat

       set "JAVA_OPTS=-Xms1G -Xmx1G -XX:MetaspaceSize=96M -XX:MaxMetaspaceSize=1024m"
    

提交回复
热议问题