2

我有一个非常简单的页面,它只是提示用户输入一个名称,然后将创建一个具有该名称的资源。当用户点击提交按钮时,我想直接将他导航到刚刚创建的实体的页面。所以我的页面看起来像这样:

<h:form id="form">
    <p:fieldset legend="Create new">
        <p:panelGrid columns="2">
            <h:outputText value="Name" />
            <p:inputText value="#{createBean.entity.name}" />
        </p:panelGrid>

        <p:commandButton value="Create Entity" ajax="false"
            action="#{createBean.submit}">
        </p:commandButton>
    </p:fieldset>
</h:form>

submit动作createBean现在应该保持实体。作为副作用,这会为实体分配一个 ID。现在我想导航到这个实体。

public void submit() {
    /* Persist entity, entity.getId() will now
       return a meaningful value. */

    FacesContext context = FacesContext.getCurrentInstance();
    NavigationHandler handler = FacesContext.getCurrentInstance().getApplication().getNavigationHandler();

    // How could I pass the ID?
    handler.handleNavigation(context, null, "pretty:entity-detail");
}

的映射entity-detail如下所示:

<url-mapping id="entity">
    <pattern value="/entities" />
    <view-id value="/views/entity/list.xhtml"/>
</url-mapping>

<url-mapping parentId="entity" id="entity-detail">
    <pattern value="/view/#{id}" />
    <view-id value="/views/entity/entityDetail.xhtml"/>
</url-mapping>

备案:使用 Apache MyFaces 2.1.5 和 PrettyFaces 3.3.2。

4

1 回答 1

3

您在映射中使用命名路径参数。在这种情况下,您可以简单地从 action 方法返回 viewId 并附加相应的查询参数。

public String submit() {

    /* Persist entity, entity.getId() will now
       return a meaningful value. */

    long id = ....

    return "/views/entity/entityDetail.xhtml?faces-redirect=true&id=" + id;

}

对于 EL 注入参数,该过程有点不同。有关详细信息,请参阅文档的这一章

于 2012-02-11T14:22:54.620 回答