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