1,257 バイト追加
、 2020年2月15日 (土) 07:29
==フィルタを設定し、リクエストまたはレスポンスのラッパーを作成する。設計の不具合があれば、フィルタまたはラッパーを適用する==
=====フィルタモデル=====
[[File:0092_filter_model.jpg]]
=====web.xml=====
<filter>
<filter-name>Section3_3_1Filter</filter-name>
<filter-class>filter.Section3_3_1Filter</filter-class>
</filter>
<filter-mapping>
<filter-name>Section3_3_1Filter</filter-name>
<url-pattern>/wiki/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
'''dispatcher'''
何も指定しないと、REQUESTから呼ばれた場合にのみフィルターが適用される。
指定することによって、呼び出し方法毎にフィルターを適用するか否かを設定できる。
[[File:0091_filter.jpg]]
*doFilter メソッドの引数は、HttpServletRequest、HttpServletResponse '''ではない'''
----
{{amazon|1932394389}}
[http://www.amazon.co.jp/dp/1932394389?tag=typea09-22&link_code=as3&creativeASIN=1932394389&creative=3999&camp=767 SCWCD Exam Study Kit: Java Web Component Developer Certification (ペーパーバック)]