I want to use Spring-Tiles intergration. Here you can see how my app looks like.
So my question is: why Spring-MVC dispatcher Servlet can not resolve my Target page ???
I want to use Spring-Tiles intergration. Here you can see how my app looks like.
So my question is: why Spring-MVC dispatcher Servlet can not resolve my Target page ???
The problem is that you use <url-pattern>/*</url-pattern>
in servlet mapping, so all requests are processed by DispatcherServlet
, including request to *.jsp
tiles. The most versatile way to solve it (but to keep restful urls without prefixes) is to use a UrlRewriteFilter.