| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「3.3 Webコンテナのリクエスト処理モデル」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
27行目: 27行目:
 
----
 
----
 
{{amazon|1932394389}}
 
{{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 (ペーパーバック)]]
+
| [[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 (ペーパーバック)]]

2020年2月15日 (土) 08:29時点における版

フィルタを設定し、リクエストまたはレスポンスのラッパーを作成する。設計の不具合があれば、フィルタまたはラッパーを適用する

フィルタモデル

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から呼ばれた場合にのみフィルターが適用される。 指定することによって、呼び出し方法毎にフィルターを適用するか否かを設定できる。

0091 filter.jpg

  • doFilter メソッドの引数は、HttpServletRequest、HttpServletResponse ではない

| [SCWCD Exam Study Kit: Java Web Component Developer Certification (ペーパーバック)]