Hi,
I'm trying to do a setup for a very basic webapplication with
jboss and spring mvc. The problem is the url-pattern I use:
<url-pattern>/*</url-pattern> this setup won't work because the TestController won't find the right viewResolver. The whole thing works
if I use the this
<url-pattern>/*.html</url-pattern> in the web.xml.
Any ideas what's wrong?
web.xml:
springmvc-servlet.xml
TestController.java