Monday, February 1, 2010

web.xml wildcard

web.xml wildcard.

if you have a file "/dir1/dir2/page.html" and
write web.xml servlet mapping like
<servlet-mapping>
<servlet-name>any_servlet</servlet-name>
<url-pattern>/dir1/dir2/*</url-pattern>
</servlet-mapping>

request to page.html always end with Http 404 not found.