So I am getting this error when I upload to google app engine
but when I build and run it locally everything works.
I am getting this error
org.springframework.web.servlet.PageNotFound noHandlerFound:
No mapping found for HTTP request with URI
[/api/default/_admin/task/createAppDomain] in DispatcherServlet with name 'spring-dispatcher'
Here is the relevant portion of my web.xml
<servlet-mapping>
<servlet-name>spring-dispatcher</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
I'm not sure how to fix this or go about debugging it considering it works locally but just not on the production server when I upload to google app engine.