1. 程式人生 > >Idea 中通過tomcat執行web專案報Exception in thread "http-apr-8082-exec-2"

Idea 中通過tomcat執行web專案報Exception in thread "http-apr-8082-exec-2"

執行專案,一直報Exception in thread "http-apr-8082-exec-2" Exception in thread "commons-pool-EvictionTimer"

發現是tomcat記憶體溢位問題在網上找了相關解決資料,在tomcat新增以下內容即可解決問題。

-Xms2048m
-Xmx2048m
-XX:MaxPermSize=4096m
-Drebel.spring_plugin=true
-Drebel.spring_mvc_plugin=true
-Drebel.hibernate_plugin=true

參考地址:

   

https://www.cnblogs.com/qmfsun/p/4205256.html

    https://blog.csdn.net/Dome_/article/details/79912170