1

我有简单的 JSF 表单:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:t="http://myfaces.apache.org/tomahawk" xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core">
<ui:composition template="layout.jsp">
    <ui:define name="title">Редактирование шаблона</ui:define>
    <ui:define name="content">
        <t:div rendered="#{template.hasErrors}">
            #{template.errorText}
        </t:div>
        <t:div rendered="#{template.hasMessage}">
            #{template.messageText}
            <p>
                <a href="/templates.jsf">Все шаблоны</a>
            </p>
        </t:div>
        <t:div rendered="#{template.canEdit}">
            <h:form>
                Name: <h:inputText value="#{template.name}"/> <br/>
                Content Type: <h:inputText value="#{template.contentType}"/> <br/>
                Content: <h:inputTextarea value="#{template.content}"/> <br/>
                Description: <h:inputTextarea value="#{template.description}"/> <br/>
                <h:commandButton value="Сохранить" action="#{template.submit}">
                </h:commandButton>
            </h:form>
        </t:div>
    </ui:define>
</ui:composition>
</html>

一切正常,但是当我尝试将此页面与查询字符串参数(template.jsf?Id=5)一起使用时,然后 sumbit 命令按钮 - 页面被重定向到 template.jsf(没有查询字符串参数。很明显-- 表单动作属性总是=“template.jsf”,即使是查询字符串参数也被传递)。所以我不能用指定的查询字符串参数调用 TemplateBean 的提交方法。

4

1 回答 1

2

id向模板 bean添加一个属性:

public class Template {
    private Long id; // +getter +setter
}

指示 JSF 在bean 创建期间faces-config对其进行设置:#{param.id}

<managed-bean>
    <managed-bean-name>template</managed-bean-name>
    <managed-bean-class>com.example.Template</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    <managed-property>
        <property-name>id</property-name>
        <value>#{param.id}</value>
    </managed-property>
</managed-bean>

通过以相同形式将其作为隐藏输入字段传递,在后续请求中保留该属性:

<h:inputHidden value="#{template.id}" />

然后您可以在操作方法中以通常的方式访问它:

public String submit() {
    System.out.println("id: " + this.id);
    return null;
}
于 2010-09-23T14:19:35.537 回答