java.lang.NoClassDefFoundError: javax/servlet/http/HttpServlet [duplicate]

╄→гoц情女王★ 提交于 2019-12-04 05:17:21

The application is trying to use the class javax.servlet.http.HttpServlet but it can't find it. This class can be found in the servlet-api-x.x.jar. Try adding that jar to your classpath. Here is the link to where you can obtain it with maven.

for those who are interested, it is trying to call the web service from soapUI, I got the following error:

java.lang.LinkageError: org / apache / axiom / soap / SOAPEnvelope

and to solve it I delete all the lib from /web-inf/lib

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!