Why Servlet.service() for servlet [XYZ] in context with path [/ABC] threw exception

前端 未结 1 1791
既然无缘
既然无缘 2021-01-15 02:43

I am unable to figure out why I am getting this error. I have checked and rechecked my code does not seems to find nay error.

16 Jul, 2012 3:21:25 AM org.ap         


        
相关标签:
1条回答
  • 2021-01-15 03:23

    org.apache.catalina.core.StandardWrapperValve invoke SEVERE: Servlet.service() for servlet [XYZ] in context with path [/ABC]

    It appears to be uncorrectly configured into the application. If it uses a context xml in the application appart from the web.xml it would be wise to check both anyhow and that the servlet XYZ is properly configured in the web.xml particularly , if it is in a .jar in lib then the .jar will need to be named in the web.xml as a resource and the server will need to be restarted. It about said it could not find the servlet.

    0 讨论(0)
提交回复
热议问题