推荐的 JSF 2.0 CRUD 框架 [已关闭]

2022-09-01 11:31:58

有人可以推荐任何框架来促进JSF 2.0中的CRUD开发吗?

我最看重的方面:

  • 尽可能轻便;对第三方库的有限依赖性
  • 支持不断发展的领域模型
  • 对重复编码的需求有限;支持基架和/或元注释

任何提示都非常感谢!你的,J。


答案 1

使用JSF 2.0提供的标准工具,CRUD确实是小菜一碟:一个@ViewScoped豆与<h:dataTable>基本上已经足够了。这是一个从本文中无耻地复制的代码示例。

豆:

package com.example;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

import javax.annotation.PostConstruct;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;

@ManagedBean
@ViewScoped
public class Bean implements Serializable {

    private List<Item> list;
    private Item item = new Item();
    private boolean edit;

    @PostConstruct
    public void init() {
        // list = dao.list();
        // Actually, you should retrieve the list from DAO. This is just for demo.
        list = new ArrayList<Item>();
        list.add(new Item(1L, "item1"));
        list.add(new Item(2L, "item2"));
        list.add(new Item(3L, "item3"));
    }

    public void add() {
        // dao.create(item);
        // Actually, the DAO should already have set the ID from DB. This is just for demo.
        item.setId(list.isEmpty() ? 1 : list.get(list.size() - 1).getId() + 1);
        list.add(item);
        item = new Item(); // Reset placeholder.
    }

    public void edit(Item item) {
        this.item = item;
        edit = true;
    }

    public void save() {
        // dao.update(item);
        item = new Item(); // Reset placeholder.
        edit = false;
    }

    public void delete(Item item) {
        // dao.delete(item);
        list.remove(item);
    }

    public List<Item> getList() {
        return list;
    }

    public Item getItem() {
        return item;
    }

    public boolean isEdit() {
        return edit;
    }

    // Other getters/setters are actually unnecessary. Feel free to add them though.

}

页:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:f="http://java.sun.com/jsf/core"
      xmlns:h="http://java.sun.com/jsf/html">
    <h:head>
        <title>Really simple CRUD</title>
    </h:head>
    <h:body>
        <h3>List items</h3>
        <h:form rendered="#{not empty bean.list}">
            <h:dataTable value="#{bean.list}" var="item">
                <h:column><f:facet name="header">ID</f:facet>#{item.id}</h:column>
                <h:column><f:facet name="header">Value</f:facet>#{item.value}</h:column>
                <h:column><h:commandButton value="edit" action="#{bean.edit(item)}" /></h:column>
                <h:column><h:commandButton value="delete" action="#{bean.delete(item)}" /></h:column>
            </h:dataTable>
        </h:form>
        <h:panelGroup rendered="#{empty bean.list}">
            <p>Table is empty! Please add new items.</p>
        </h:panelGroup>
        <h:panelGroup rendered="#{!bean.edit}">
            <h3>Add item</h3>
            <h:form>
                <p>Value: <h:inputText value="#{bean.item.value}" /></p>
                <p><h:commandButton value="add" action="#{bean.add}" /></p>
            </h:form>
        </h:panelGroup>
        <h:panelGroup rendered="#{bean.edit}">
            <h3>Edit item #{bean.item.id}</h3>
            <h:form>
                <p>Value: <h:inputText value="#{bean.item.value}" /></p>
                <p><h:commandButton value="save" action="#{bean.save}" /></p>
            </h:form>
        </h:panelGroup>
    </h:body>
</html>

此外,Netbeans 还提供了一些有用的向导,用于基于数据模型对 CRUD 应用程序进行类型化。


答案 2

JSF 2.0 本身。CRUD很容易单独使用JSF - 不需要任何其他框架。你需要

  • 1 个受管 Bean(注释为@ManagedBean)
  • 2 个 xhtml 页面(小面) - 一个用于列表,一个用于编辑/创建
  • 带有链接/按钮的 A,通过该链接/按钮可以设置受管 Bean 中的当前行对象(使用 )。(在 JSF 1.2 中,这是通过以下方式实现的:<h:dataTable>editaction="#{bean.edit(currentRowObject)}"<f:setPropertyActionListener>)
  • 用于处理操作的操作方法(不带参数)void
  • @PostConstruct以初始加载数据。

推荐