最近の更新

2012年6月24日日曜日

(JavaServer Faces 1.2 TLD)setPropertyActionListener

【目的】
JSF1.2のsetPropertyActionListenerを実行します。



【手順】
1.「JSF1.2プロジェクトの作成方法」の手順で、「JSF12Sample028-SetPropertyActionListener」といプロジェクトを作成。
※プロジェクトの設定は以下の通り。

動的
Web
プロジェクト
プロジェクト名JSF12Sample028-SetPropertyActionListener

ターゲット・ランタイムApache Tomcat v6.0
動的 web モジュール バージョン2.5
構成Apache Tomcat v6.0 デフォルト構成
EARメンバーシップチェックなし
ワーキング・セットチェックなし
Javaビルド・パス上のソース・フォルダーsrc
デフォルト出力フォルダーbuild\classes
Web
モジュール
コンテキスト・ルートJSF12Sample028-SetPropertyActionListener

コンテンツ・ディレクトリーWebContent
web.xml デプロイメント記述子の作成チェックあり


2.「WebContent/WEB-INF/web.xml」を以下の様に入力。
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
    id="WebApp_ID" version="2.5">

    <display-name>JSF12Sample028-SetPropertyActionListener</display-name>

    <context-param>
        <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
        <param-value>.xhtml</param-value>
    </context-param>

    <welcome-file-list>
        <welcome-file>faces/index.xhtml</welcome-file>
    </welcome-file-list>

    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup>1</load-on-startup>
    </servlet>

    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
</web-app>

3.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング、「Ctrl+S」でファイルを保存。
4.「Javaパッケージの作成方法」の手順で、「com.example.jsf12sample028」というパッケージを作成。
5.「Javaクラスファイルの作成方法」の手順で、「SetPropertyActionListenerBean.java」というクラスファイルを作成。
6.「SetPropertyActionListenerBean.java」を以下の様に入力。
package com.example.jsf12sample028;

import java.io.Serializable;

public class SetPropertyActionListenerBean implements Serializable {
    private String value1;
    private String value2;

    public String getValue1() {
        return value1;
    }
    public void setValue1(String value1) {
        this.value1 = value1;
    }
    public String getValue2() {
        return value2;
    }
    public void setValue2(String value2) {
        this.value2 = value2;
    }
}

7.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング、「Ctrl+S」でファイルを保存。
8.「WebContent/WEB-INF/faces-config.xml」を以下の様に入力。
<?xml version="1.0" encoding="UTF-8"?>

<faces-config xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd"
    version="1.2">

    <managed-bean>
        <managed-bean-name>setPropertyActionListenerBean</managed-bean-name>
        <managed-bean-class>com.example.jsf12sample028.SetPropertyActionListenerBean</managed-bean-class>
        <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>

    <application>
        <view-handler>com.sun.facelets.FaceletViewHandler</view-handler>
    </application>

</faces-config>

9.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング、「Ctrl+S」でファイルを保存。
10.「任意のファイルの作成方法」の手順で、「WebContent/」ディレクトリに「index.xhtml」というファイルを作成。
11.「index.xhtml」を以下の様に入力。
<html xmlns="http://www.w3c.org/1999/xhtml"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html">
<head>
</head>
<body>
    <f:view>
        <h:form>
            <h:commandButton value="送信">
                <f:setPropertyActionListener
                    target="#{setPropertyActionListenerBean.value1}" value="あいうおえ" />
                <f:setPropertyActionListener
                    target="#{setPropertyActionListenerBean.value2}" value="12345" />
            </h:commandButton>
            <br />
            <h:outputText value="#{setPropertyActionListenerBean.value1}" />
            <br />
            <h:outputText value="#{setPropertyActionListenerBean.value2}" />
        </h:form>
    </f:view>
</body>
</html>

12.「Ctrl+Shift+F」を押し、ソースコードをフォーマッティング、「Ctrl+S」でファイルを保存。
13.「動的Webアプリケーションをサーバーに配置する方法」の手順で、作成したプロジェクトをサーバーに配置します。
14.「サーバーをデバッグモードで起動する方法」の手順で、サーバーを起動します。
15.ブラウザで以下のURLにアクセスします。
http://localhost:8080/JSF12Sample028-SetPropertyActionListener/faces/index.xhtml

16.以下の様に表示されれば成功です。



17.以下の様なHTMLが出力されました。
<html xmlns="http://www.w3c.org/1999/xhtml">
<head>
</head>
<body>
    <form id="j_id1" name="j_id1" method="post" action="/JSF12Sample028-SetPropertyActionListener/faces/index.xhtml;jsessionid=B2B9C71B89E71ADB2C4D95285693C35B" enctype="application/x-www-form-urlencoded">
    <input type="hidden" name="j_id1" value="j_id1" />
    <input type="submit" name="j_id1:j_id2" value="送信" />
    <br />
    <br />
    <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="-6133519643336107346:-7422887801672442551" autocomplete="off" />
    </form>
</body>
</html>

<html xmlns="http://www.w3c.org/1999/xhtml">
<head>
</head>
<body>
    <form id="j_id1" name="j_id1" method="post" action="/JSF12Sample028-SetPropertyActionListener/faces/index.xhtml" enctype="application/x-www-form-urlencoded">
        <input type="hidden" name="j_id1" value="j_id1" />
        <input type="submit" name="j_id1:j_id2" value="送信" />
        <br />あいうおえ
        <br />12345
        <input type="hidden" name="javax.faces.ViewState" id="javax.faces.ViewState" value="-6133519643336107346:6363086930095639677" autocomplete="off" />
    </form>
</body>
</html>



以上です。

0 件のコメント:

コメントを投稿

注: コメントを投稿できるのは、このブログのメンバーだけです。

関連記事