bean pageタグ
使用した環境JDK 6 Update 11 struts 1.3.10
pageContextから指定されたオブジェクトを取得し、ページスコープにセットします。
| 属性 | 必須 | 意味 |
|---|
| id | ○ | pageContextから取得したオブジェクトをセットする名前を指定する。 | | property | ○ | 取得するオブジェクトを指定する。 |
propertyで指定可能なパラメータは以下の通りです。
| propertyの設定値 | 取得されるオブジェクト |
|---|
| application | pageContext.getServletContext()で得られる値 | | config | pageContext.getServletConfig()で得られる値 | | request | pageContext.getRequest()で得られる値 | | response | pageContext.getResponse()で得られる値 | | session | pageContext.getSession()で得られる値 |
|