当我运行应用程序时,我收到了这个错误:
openJdk 64-bit server vm warning:Exception java.lang.outofmemoryerror ouucer
dispatching signal SIGTERM to handler-the VM may need to be forcibly terminated.
你能帮我解决吗?
当我运行应用程序时,我收到了这个错误:
openJdk 64-bit server vm warning:Exception java.lang.outofmemoryerror ouucer
dispatching signal SIGTERM to handler-the VM may need to be forcibly terminated.
你能帮我解决吗?
该错误消息表明您的 Web 应用程序内存不足(Java 堆空间)。想到两件事:
要解决 #1,您需要确定您的应用程序需要多少内存并更新 tomcat 配置以包含更大的堆空间。有关分步说明http://javahowto.blogspot.com.au/2006/06/6-common-errors-in-setting-java-heap.html
解决 #2 将涉及分析您的应用程序以帮助识别内存泄漏。有很多关于这个主题的文章。例如http://www.javacodegeeks.com/2013/05/monitoring-and-detecting-memory-leaks-in-your-java-application.html