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

后端 未结 7 1765
执念已碎
执念已碎 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

    What version of tomcat are you using ? What appears to me is that the tomcat version is not supporting the servlet & jsp versions you're using. You can change to something like below or look into your version of tomcat on what it supports and change the versions accordingly.

     
                javax.servlet
                javax.servlet-api
                3.0.1
                provided
            
            
                javax.servlet
                jsp-api
                2.0
                provided
            
    

提交回复
热议问题