Hi,
I'm working with Spring MVC. I have a controller which returns a new ModelAndView(new RedirectView(getSuccessView()))
. SuccessView is set as home.htm
which is a virtual page that maps to WEB-INF/jsp/home.jsp
.
However I'm getting this error:
No mapping found for HTTP request with URI [
/Bikes_Spring/WEB-INF/jsp/home.htm
] in DispatcherServlet.
As you can see it's searching for home.htm inside the jsp folder... it should be /Bikes_Spring/home.htm
Any ideas how I could resolve this? Thanks :)
Krt_Malta