3

thisthis questionのおかげで、リクエストオブジェクトとそれに応じてリクエストFilterをチェックするを作成しました。 両方にマップする必要があるとしますが、または許可されていないなどの他のものにはマップしないでください。つまり、リクエスト以外のものではありません。Apache Tomcat 7.0.22 コンテナーを使用しています。CookieforwardFilterwelcome-fileweb.xml
welcome-fileindex.htmlFilterwww.example.com/www.example.com/index.htmlwww.example.com/foo/*www.example.com/*welcome-file

4

1 に答える 1

2

これらを 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>
于 2012-04-15T00:32:03.837 に答える