У меня есть очень простая страница, которая просто запрашивает у пользователя имя, а затем создает ресурс с таким именем. Когда пользователь нажимает кнопку «Отправить», я бы хотел перейти непосредственно на страницу только что созданного объекта. Итак, моя страница выглядит так:
<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.