导航到传递参数的其他视图

时间:2016-08-17 13:01:39

标签: jsf-2 primefaces navigation viewparams

我目前的环境是JRE 1.7,JSF 2.2,Eclipse Luna。在我的应用程序的某个页面(entity_index.xhtml)中,我有以下(PrimeFaces)按钮:

<p:commandButton value="Details" action="entity_details"
                 ajax="false" onclick="this.form.target='_blank'">
    <f:param name="id" value="#{entity.id}" />
</p:commandButton>

这个想法是提供一个按钮,以便用户可以单击它,当前实体的一些细节将显示在另一个浏览器选项卡中(页面entity_details.xhtml)。这是一个很多的按钮,因此entity_index.xhtml页面显示了许多实体实例,每个实例都有一个详细信息按钮。

按钮的工作原理是打开一个新选项卡并显示正确的页面(entity_details.xhtml),但实体ID永远不会到达处理详细信息页面的bean(EntityDetailsMB)。详情页面如下:

<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui" xmlns:h="http://java.sun.com/jsf/html"
    xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:dsi="http://www.cce.ufpr.br"
    template="/private/template/sbadmin.xhtml">
<f:metadata>
    <f:viewParam name="id" value="#{entityDetailsMB.id}"/>
</f:metadata>

<ui:define name="content">
<h2 class="page-header">#{entityDetailsMB.entity.name}</h2>
<h:form id="form">
...
</ui:composition>

请注意,有一个<f:metadata/>元素专门用于捕获从索引页面发送的参数,并将其转发到id中的EntityDetailsMB属性,其中包含以下内容:

public Entity getEntity() {
    return entityById(id);
}

public Long getId() {
    return id;
}

public void setId(Long value) {
    id = value;
}

由于永远不会调用setId()方法,getEntity()始终会返回null

让它起作用的缺失是什么?

1 个答案:

答案 0 :(得分:5)

p:commandButton执行 POST 请求。您只想获取包含实体详细信息的视图,而不是 POST 服务器,因此您需要h:link

<h:link value="Details" outcome="entity_details" target="_blank">
    <f:param name="id" value="#{entity.id}" />
</h:link>

然后,目标页面中的f:viewParam将能够处理url参数:

<f:metadata>
    <f:viewParam name="id" value="#{entityDetailsMB.id}"/>
    <f:viewAction action="#{entityDetailsMB.init}" />
</f:metadata>

使用f:viewAction初始化您的实体,而不是在getter which is discouraged中执行此操作:

public void init(){
    entity = entityById(id);
}

另见: