中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

發布時間:2020-06-21 10:13:17 來源:網絡 閱讀:1040 作者:小伙伴伴 欄目:開發技術

基礎環境:

Oracle Fusion Middleware Tag Reference for Oracle ADF Faces

11g Release 2 (11.1.2.4.0)

E17491-06 

<af:table>表格組件是ADF Faces的重要數據展現組件,更準確的描述是表格風格(或表格式)的數據展現組件,它可以通過綁定管理Bean或VO獲得要展示的數據。本文介紹了基于Class作為數據模型,應用管理Bean實現表格內容填充的開發過程。


前置,創建基礎工程(名稱為“DemoTable”):

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格


開發過程:

  1. 創建一個類(Class)作為表格行的數據模型。

  2. 創建JSPX頁面以及表格組件。

  3. 通過后臺管理Bean將數據發送給表格完成展現過程。



  1. 創建數據模型類,命名為TableRow,內涵3個屬性:id,name,descr。

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格


ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

TableRow類代碼:

package demo.table.app.view;

public class TableRow {
    private String id,name,descr;

    public TableRow(String id, String name, String descr) {
        super();
        this.id = id;
        this.name = name;
        this.descr = descr;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getId() {
        return id;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getName() {
        return name;
    }

    public void setDescr(String descr) {
        this.descr = descr;
    }

    public String getDescr() {
        return descr;
    }
}

2.創建JSPX頁面以及表格組件。

新建JSPX頁面,名為demo1.jspx

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

從右側的組件清單中選擇Table組件,拖拽至頁面范圍內。

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

IDE提示表格基礎配置,這一步驟不做修改,直接完成,生成表格組件的默認代碼。

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

同時IDE提示會輔助插入相關標簽代碼,點解確認按鈕即可。

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

生成后的默認頁面狀態

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

此時頁面中的源代碼:順便提一句,表格屬性rowBandingInterval指的是間隔高亮顯示的行數,0表示不設定。

<?xml version='1.0' encoding='UTF-8'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
          xmlns:f="http://java.sun.com/jsf/core">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
        <af:document title="demo1.jspx" id="d1">
            <af:form id="f1">
                <af:table var="row" rowBandingInterval="0" id="t1">
                    <af:column sortable="false" headerText="col1" id="c1">
                        <af:outputText value="#{row.col1}" id="ot1"/>
                    </af:column>
                    <af:column sortable="false" headerText="col2" id="c2">
                        <af:outputText value="#{row.col2}" id="ot2"/>
                    </af:column>
                    <af:column sortable="false" headerText="col3" id="c3">
                        <af:outputText value="#{row.col3}" id="ot3"/>
                    </af:column>
                    <af:column sortable="false" headerText="col4" id="c4">
                        <af:outputText value="#{row.col4}" id="ot4"/>
                    </af:column>
                    <af:column sortable="false" headerText="col5" id="c5">
                        <af:outputText value="#{row.col5}" id="ot5"/>
                    </af:column>
                </af:table>
            </af:form>
        </af:document>
    </f:view>
</jsp:root>



3.通過后臺管理Bean將數據發送給表格完成展現過程。

3.1創建管理Bean類,擁有列表屬性“data”,初始化的時候實例化4個表格對象。

package demo.table.app.view;

import java.util.ArrayList;
import java.util.List;

public class TableBean {
    List<TableRow> data = new ArrayList<TableRow>();

    public TableBean() {
        super();
        data.add(new TableRow("1", "張三", "測試用戶1"));
        data.add(new TableRow("2", "李四", "測試用戶2"));
        data.add(new TableRow("3", "王五", "測試用戶3"));
        data.add(new TableRow("4", "奧特曼", "測試用戶4"));
    }

    public void setData(List<TableRow> data) {
        this.data = data;
    }

    public List<TableRow> getData() {
        return data;
    }
}

3.2注冊管理Bean

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

3.3修改表格代碼

在<af:table>標簽中,增加“value="#{bean1.data}"”

修正列信息,與數據模型類的屬性想對應:

<af:table var="row" rowBandingInterval="0" id="t1" value="#{bean1.data}">
    <af:column sortable="false" headerText="id" id="c1">
     <af:outputText value="#{row.id}" id="ot1"/>
  </af:column>
  <af:column sortable="false" headerText="name" id="c2">
     <af:outputText value="#{row.name}" id="ot2"/>
  </af:column>
  <af:column sortable="false" headerText="descr" id="c3">
     <af:outputText value="#{row.descr}" id="ot3"/>
  </af:column> 
</af:table>

至此即可運行工程查看結果,右鍵點擊JSPX文件,選擇“Run”菜單項:

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

運行效果如圖:

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格

將表格屬性rowBandingInterval值修改為1,運行效果如圖:

ADF Faces 表格應用基礎案例一:應用List<Class>填充文本表格


小結:根據開發過程分析可以得出,ADF中表格的開發調用線索:

  1. 頁面中定義表格組件

  2. 組件的關鍵屬性通過EL表達式的方式將調用流指向了目標管理Bean

  3. 管理Bean提供表格組件可接受行數據模型對象清單。

  4. 行數據模型對象可以由自定義Class(get/set屬性訪問器)或Map對象提供。


附件:http://down.51cto.com/data/2367928
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

清丰县| 彝良县| 新昌县| 天台县| 陇南市| 中阳县| 济南市| 泰顺县| 北流市| 镇赉县| 清原| 商水县| 新源县| 海安县| 弋阳县| 临桂县| 冕宁县| 隆回县| 乌拉特前旗| 资中县| 甘南县| 柯坪县| 永善县| 丰城市| 余姚市| 永川市| 九台市| 陆川县| 汽车| 枣强县| 新乡市| 南召县| 丰宁| 永和县| 金寨县| 大足县| 且末县| 奉化市| 莱州市| 金门县| 定远县|