My jboss is throwing undescriptive error while trying to run my application (spring mvc). It deploys ok, and this exception doesn\'t tell me anything useful so I don\'t real
Try removing servlet-api jar from your WAR file.
If you are using Maven, you can just set the scope of the servlet-api
to provided
.
This gets thrown in HttpServlet.service(ServletRequest, ServletResponse)
when the parameters can't be cast to HttpServletRequest
and HttpServletResponse
respectively.
That means one of two things:
servlet-api-x.x.jar
with your webapp).