I've been trying to deploy a Spring MVC Java Web Application on a Google App Engine application but been having no luck doing so.
I'm using App Engine Java SDK to deploy it from my machine.
When I perform a deploy, I can access the resources (such as images, js, etc through URL). But when I try to access the homepage I get a response with 500 status code, and the error on the server is the following:
java.lang.IllegalStateException: No such servlet: jsp
at org.eclipse.jetty.servlet.ServletHandler.updateMappings (ServletHandler.java:1535)
at org.eclipse.jetty.servlet.ServletHandler.doStart (ServletHandler.java:157)
...
I've tried to lookup the "No such servlet: jsp" error but I didn't get any luck with the different suggestions found. PS: When testing web server in the local development environment using the App Engine command the Web Server works as expected.
Hope you can give me any suggestion to what must be doing wrong.
Thank you