小编典典

如何在web.xml中为Tomcat映射欢迎文件的过滤器?

tomcat

我创建了一个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


阅读 336

收藏
2020-06-16

共1个答案

小编典典

只需将它们添加到您的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>
2020-06-16