java.lang.OutOfMemoryError ( PermGen space) and java.lang.ClassNotFoundException at the opening the jsp page

后端 未结 4 1310
梦谈多话
梦谈多话 2021-01-12 00:59

I use SpringSource Tool Suite 3.0.1, Tomcat server 7.0.21, maven-2.2.1. I successfully built my web application, ran Tomcat server. The application successfully worked. Aft

4条回答
  •  执笔经年
    2021-01-12 01:55

    It looks like tomcat is falling over compiling the JSPs, you might want to consider precompiling the JSPs (which would have the added benefit of checking the JSPs for syntax errors before you deploy your app).

    See also: How can I make Tomcat pre-compile JSPs on startup?

提交回复
热议问题