https://issues.apache.org/bugzilla/show_bug.cgi?id=51894
--- Comment #5 from Konstantin Kolinko <knst.koli...@gmail.com> 2011-09-27 00:30:44 UTC --- Please provide a WAR file (without Spring libraries - those can be downloaded), so that it can be tested. Thus I cannot test the app itself. Testing the views and reviewing configuration instead. 1. Accessing the views directly does work. Forwarding to your views works as well (that is what DispatcherServlet does when displaying a view). So it is a problem with your configuration. 2. You mapped DispatcherServlet to <url-pattern>/</url-pattern>. It is wrong, because it conflicts with mapping of DefaultServlet (in conf/web.xml). In short: DefaultServlet is the servlet that is used to serve static files. In your configuration the nested request to helloWorld.html is served not by DefaultServlet but by DispatcherServlet. Whatever happens in this case is beyond my scope. IIRC in such cases DispatcherServlet responds with HTTP response code 400 (wrong request), because it cannot map request to proper controller. Closing as INVALID: you should fix your mapping for static resources. For example, configure org.apache.catalina.servlets.DefaultServlet explicitly and map it to *.html URLs. Or change the mapping for DispatcherServlet so that there would not be a conflict. -- Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org