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

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

    This was caused because of something like this in my case:

    
        
            *.jsp
            /headerfooter/header.jsp
            /headerfooter/footer.jsp
        
    
    

    The problem was actually I did not have header.jsp in my project. However the error message was still saying index_jsp was not found.

提交回复
热议问题