Tomcat failing to deploy .war

前端 未结 2 1374
南旧
南旧 2020-12-16 11:45

I\'m trying to follow this tutorial on creating a simple REST web service, however I get to deploying it on tomcat and it throws an exception:

FAIL - Applica         


        
2条回答
  •  醉话见心
    2020-12-16 12:29

    As the above comment shows, the problem turned out to be that the application web.xml referenced a java class in a servlet definition. The problem was corrected by making sure the application actually contained that class. The missing jar file was located and put in the WEB-INF/lib directory.

提交回复
热议问题