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 ???
|
feedback
|
|
The problem is that you use | |||
feedback
|
|
I think you're missing a critical ViewResolver. I checked the post you mentioned in SpringSource but I didn't see the following ViewResolver:
Try adding that ViewResolver and see if that would help. I use Spring and Tiles as well. I just have to declare that and the TilesConfigurer. Check out these references: | |||
|
feedback
|
|
It's a common issue using Spring and it's due to the fact that the view (jsp) goes through the DispatcherServlet. Try to modify your web.xml using
and then add to your urlrewrite.xml something like:
I'm assuming you're using urlrewrite, if you're not import the jar and add the filter mapping in your web.xml such as:
| |||
|
feedback
|