Changes between Version 6 and Version 7 of UTGBCore/RequestDispatcher


Ignore:
Timestamp:
10/04/07 18:46:58 (18 years ago)
Author:
leo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UTGBCore/RequestDispatcher

    v6 v7  
    6464}}}
    6565
     66== Using Dispatcher in GWT Hosted Mode ==
     67Unfortunately, GWT-hosted mode that uses gwt-embedded TomcatServer and GWTShell, does not support
     68servlet-mapping in web.xml, since every path (/*) is already mapped to GWTShellServlet, which
     69redirects requests to public folder or servlet codes.   
     70
     71GWTShellServlet is mandatory to debug client-side codes within within Eclipse (or other IDEs).
     72
     73
     74Thus, there is no way to use following web.xml setting effectively.
     75{{{
     76<url-pattern>*.action</url-pattern>
     77}}}
     78Even if you put the avobe setting
     79into tomcat/ROOT/WEB-INF/web.xml, it does not work because of the mapping /* to GWTShellServlet overshadows other mappings.
     80
     81
     82
     83