我创建了一个Filter检查Cookie与请求对象和sforward请求相应感谢question..Now我要地图这Filter只是在welcome-file为我在宣布它web.xml。 说我必须welcome-file那样为两者都index.html映射,但不能为诸如或不允许的其他任何东西映射,我的意思是除了请求之外什么都没有。我正在使用ApacheTomcat7.0.22容器。Filter``www.example.com/``www.example.com/index.html``www.example.com/foo/*``www.example.com/*``welcome-file
Filter
Cookie
forward
welcome-file
web.xml
index.html
Filter``www.example.com/``www.example.com/index.html``www.example.com/foo/*``www.example.com/*``welcome-file
只需将它们添加到您的web.xml
<filter> <filter-name>myFilter</filter-name> <filter-class>com.examples.myFilter</filter-class> </filter> <filter-mapping> <filter-name>myFilter</filter-name> <url-pattern>/index.html</url-pattern> </filter-mapping>