I have an application written for Servlet Spec 2.4 with an old web server designed for Servlet Spec 2.3. The web.xml file has the following syntax:
<filter-mapping> <filter-name>sitemesh</filter-name> <url-pattern>*.action</url-pattern> <dispatcher>REQUEST</dispatcher> <dispatcher>FORWARD</dispatcher> </filter-mapping>
How can I rewrite this mapping for servlet 2.3 compatibility?
java jsp
George
source share