I am new to spring and am having a problem resolving a page for a view. I have used the resource bundle resolver as well as the internalresource view resolver. Neither have worked and I must have some other problem. I am getting the following error:
org.springframework.web.servlet.PageNotFound.noHan dlerFound() No mapping for [/Spinnaker/WEB-INF/views/home.jsp] in DispatcherServlet with name 'Spinnaker'
org.springframework.web.servlet.PageNotFound.noHan dlerFound() No mapping for [/Spinnaker/404.jsp] in DispatcherServlet with name 'Spinnaker'
The url /Spinnaker/index.html goes to the controller, where the view "home" is trying to be resolved.
the home.jsp is in WEB-INF/views
THe web.xml has *.jsp and *.html mapped.
Thanks in advance for your help!!


Reply With Quote
Have you tried changing to some other type of controller - you may try SimpleFormController?