In a normal Java weba app, if I put this in my servlet code the forwarding works:
getServletConfig().getServletContext().getRequestDispatcher("/something.jsp").forward(req, resp);
But when I do this in the same servlet in a Spring 3.0 app I get a 404
even if I add this entry to my application context xml file:
<intercept-url pattern="/something.jsp**" access="hasRole('ROLE_ANONYMOUS')" requires-channel="http" />
Instead I have to do this in Spring it seems:
getServletConfig().getServletContext().getRequestDispatcher("/something").forward(req, resp);
and add a mapping in the controller:
@RequestMapping(value = {"/something"}, method = RequestMethod.GET)
public final String something(HttpServletRequest req, ModelMap model) {
...
}
But this is quite a significant detour to get a simple JSP forward to work.
Is there a better way to do this?
This is how I do it:
Set up the view resolver so the view names are based on the request URL:
Second, the servlet container chooses the mapping based on the longest path that matches. So you can put this mapping in for your JSPs and it will be chosen over the /* mapping.
Actually for Tomcat that's all you'll need since jsp is a servlet that exists out of the box. For other containers you either need to find out the name of the JSP servlet or add a servlet definition like:
Once those two things are in place then you don't need to do anything in your controllers except return a model. It will automatically forward to the view from WEB-INF/pages based on the URL of your request. In your example it would be /WEB-INF/pages/something.jsp.