TOMCAT内存溢出问题Exception in thread ""http-bio-8080"-exec-6等等

Tomcat启动之后会出现http-bio-8080"-exec-6等等的异常,但是显然的提示信息当中不是程序的问题,

那么就应该想到是环境的问题

 Tomcat7启动后,后台抛出如下异常,前台一直无法登陆
Exception in thread ""http-bio-8080"-exec-6" java.lang.OutOfMemoryError: PermGen space
Exception in thread ""http-bio-8080"-exec-9" java.lang.OutOfMemoryError: PermGen space
Exception in thread "schedulerFactory_Worker-3" java.lang.OutOfMemoryError: PermGen space
Exception in thread ""http-bio-8080"-exec-2" java.lang.OutOfMemoryError: PermGen space
Exception in thread "Timer-0" java.lang.OutOfMemoryError: PermGen space


MyEclipse中打开window-->preferences-->Tomacat

-Xms128m -Xmx512m -XX:PermSize=128m -XX:MaxPermSize=128m

如果当前的信息就是上述的参数的话,那么可以适当的调大一些上面的值。

TOMCAT内存溢出问题Exception in thread

你可能感兴趣的:(Java)