Tomcat 7 Spring 应用程序 IntelliJ IDEA 10.5 OutOfMemoryError:PermGen 空间
不确定谁对这个错误负责:
Exception in thread "main" java.lang.OutOfMemoryError: PermGen space
当我尝试从 IntelliJ IDEA 10.5(我的项目是 maven 格式项目)以调试模式运行我的 spring web 应用程序时,会发生此错误。
当从独立的 Tomcat 7 Web 服务器运行相同的应用程序(将 war 放入 webapps 文件夹)时,它工作正常。另外,从 mvn clean install t7:run-forked 应用程序也可以正常工作。
我的应用程序是Spring JPA应用程序,使用Hibernate作为JPA提供程序,c3p0用于连接池(从bonecp切换到它,认为bonecp是导致此错误的原因,但它仍然可以用c3p0重现),使用Spring TomcatInstrumentationLoading Tomcat 上的 JPA 支持。
我的操作系统是Debian、Linux。
Not sure who is responsible for this error:
Exception in thread "main" java.lang.OutOfMemoryError: PermGen space
This error occurs whey I try to run my spring web app in Debug mode from the IntelliJ IDEA 10.5 (my project is maven format project).
When running the same application from the standalone Tomcat 7 Web server (put war into webapps folder) it works fine. Also from mvn clean install t7:run-forked application also works fine.
My app is Spring JPA application using Hibernate as JPA provider, c3p0 is used for connection pooling (switched to it from bonecp, thought that the bonecp was the cause of this error, but it is still reproducible with c3p0 too), Spring TomcatInstrumentationLoading is used for JPA support on Tomcat.
My OS is Debian, Linux.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该足以使其工作:
VM options 字段是在 Tomcat 运行/调试配置中设置
-XX:MaxPermSize=256m
This should be enough to make it work:
VM options field is set in the Tomcat Run/Debug configuration to
-XX:MaxPermSize=256m
设置 VM 参数为您的程序分配更多空间,
例如
Set VM arguments to allocate more space for your program
like