0

我想使用具有 requestscope 的相同支持 bean 将数据从数据表传递到另一个页面,这可能不使用数据模型吗?我正在使用 Servlet 3.0

这是我的数据表页面

    <p:dataTable var="entity" value="#{collegeController.allCollege}">
        <p:column headerText="Code">
            #{entity.collegeCode}
        </p:column>
        <p:column headerText="Description">
            #{entity.collegeDesc}
        </p:column>
        <p:column headerText="">
            <p:commandLink value="Edit" action="#{collegeController.prepareEdit(entity)}"/>
        </p:column>
    </p:dataTable>

这是我的支持豆

@ManagedBean
@RequestScoped
public class CollegeController implements Serializable {

    private String redirect = ".jsf?faces-redirect=true";
    private CollegeCatalog entity;

    public CollegeController() {
    }

    public String prepareEdit(CollegeCatalog selectedEntity) {
        Session s = NewHibernateUtil.getSessionFactory().getCurrentSession();
        s.beginTransaction();

        entity = (CollegeCatalog) s.load(CollegeCatalog.class, selectedEntity.getCollegeKey());

        return "update" + redirect;
    }

    public List getAllCollege() {
        Session s = NewHibernateUtil.getSessionFactory().getCurrentSession();
        Transaction tx = s.beginTransaction();

        String query = ""
                + "FROM CollegeCatalog entity "
                + "WHERE entity.deleted = FALSE";

        Query q = s.createQuery(query);

        List l = q.list();

        tx.commit();

        return l;
    }

    /**
     * @return the entity
     */
    public CollegeCatalog getEntity() {
        if (entity == null) {
            entity = new CollegeCatalog();
        }
        return entity;
    }

    /**
     * @param entity the entity to set
     */
    public void setEntity(CollegeCatalog entity) {
        this.entity = entity;
    }
}

这是我的更新页面(这是我要显示所选数据的地方)

<h:form>
    <p:outputLabel value="Code:" for="txtCode"/>
    <p:inputText id="txtCode" value="#{collegeController.entity.collegeCode}"/>
    <br/>
    <p:outputLabel value="Description:" for="txtDesc"/>
    <p:inputText id="txtDesc" value="#{collegeController.entity.collegeDesc}"/>
    <br/><br/>
    <p:commandButton value="Update" action="#{collegeController.update()}"/>
    <p:commandButton value="Back" action="index.jsf?faces-redirect=true"/>
</h:form>

它总是返回null

4

2 回答 2

3

您发送给您的collegeController.action方法的参数将丢失,因为您有一个@RequestScoped托管 bean,并且将在每个请求上创建整个托管 bean。collegeController.allCollege此外,根据您的实际设计,将在每次方法调用时重新创建该列表。

要解决您的问题:

  1. 将托管 bean 范围更改为更广泛的范围。在这种情况下,@ViewScoped会很好。有关托管 bean 范围的更多信息:JSF 2 中的通信 - 托管 Bean 范围

  2. 将所有业务逻辑移到 getter 之外。由于您正在使用 JSF 2 并希望在创建 bean 时加载您的列表,您可以使用一种@PostConstruct方法并在那里加载列表。在 JSF 中使用托管 bean 时,请记住不要将任何业务逻辑放在您的 getters/setters中。更多信息:为什么 JSF 多次调用 getter

接受这些建议并将它们应用到您的代码中,托管 bean 将如下所示:

@ManagedBean
@ViewScoped
public class CollegeController implements Serializable {

    private String redirect = ".jsf?faces-redirect=true";
    private CollegeCatalog entity;
    private List<CollegeCatalog> collegeCatalogList;

    public CollegeController() {
    }

    @PostConstruct
    public void init() {
        Session s = NewHibernateUtil.getSessionFactory().getCurrentSession();
        Transaction tx = s.beginTransaction();
        String query = ""
                + "FROM CollegeCatalog entity "
                + "WHERE entity.deleted = FALSE";
        Query q = s.createQuery(query);
        collegeCatalogList = (List<CollegeCatalog>)q.list();
        tx.commit();

        entity = new CollegeCatalog();
    }

    public String prepareEdit(CollegeCatalog selectedEntity) {
        Session s = NewHibernateUtil.getSessionFactory().getCurrentSession();
        s.beginTransaction();

        entity = (CollegeCatalog)
            s.load(CollegeCatalog.class, selectedEntity.getCollegeKey());

        return "update" + redirect;
    }

    public List<CollegeCatalog> getAllCollege() {
        return collegeCatalogList;
    }

    /**
     * @return the entity
     */
    public CollegeCatalog getEntity() {
        return entity;
    }

    /**
     * @param entity the entity to set
     */
    public void setEntity(CollegeCatalog entity) {
        this.entity = entity;
    }
}

不过,请注意,这种方法只是帮助您将entity参数发送<p:commandLink action="#{collegeController.prepareEdit(entity)}"/>到托管 bean。最好不要重定向页面,而是转发它。

如果您仍然喜欢使用重定向来执行此操作,则此方法无法帮助您将数据发送到另一个页面。如果您改用 a <h:button>(甚至更好的 a <h:link>)将重定向到您的其他页面并且您可以在那里处理参数,那会更好。在这里可以更好地解释:JSF 2 中的通信 - 处理 GET 请求参数

于 2013-05-26T14:03:16.740 回答
0

尝试f:setPropertyActionListener@ViewScoped

像这样的东西

<p:column headerText="">
    <p:commandLink value="Edit" action="#{collegeController.action" >
        <f:setPropertyActionListener value="#{collegeController.entity}"  target="#{collegeController.targetEntity}">
    </p:commandLink>
</p:column>
于 2013-05-26T07:12:25.020 回答