java.lang.ClassNotFoundException: org.apache.jsp.index_jsp

后端 未结 7 1774
执念已碎
执念已碎 2020-12-03 03:17

I have an old struts 1 app that has always been built using Ant, which I\'m converting to use Maven instead. The structure of my app is modular, with dependency management i

7条回答
  •  盖世英雄少女心
    2020-12-03 03:56

    An addition to the other answers that didn't work for me: In my case the error occurred due to permission errors. The project got deployed while the tomcat was running as root, later when started as tomcat user I got the error from the question title.

    Solution in my case was to set the right permissions, e.x. on a unix system:

    cd 
    chown -R  *
    

提交回复
热议问题