1

我正在从 seam 2.2 (jsf 1.2, jboss6) 迁移到 seam 2.3 (jsf 2, jboss 7) 并发现奇怪的行为。我能够通过联系人列表示例重现它:

编辑 viewContact.xhtml 页面并替换这个片段:

<h3>
  <h:outputText id="Comments" value="Comments" rendered="#{not empty contact.comments}" />
  <h:outputText id="noComments" value="No Comments" rendered="#{empty contact.comments}" />
</h3>

像这样:

<c:if test="#{not empty contact.comments}">
  <h3><h:outputText value="Comments" /></h3>
</c:if>
<c:if test="#{empty contact.comments}">
  <h3><h:outputText value="No Comments" /></h3>
</c:if>

(不要忘记添加命名空间xmlns:c="http://java.sun.com/jsp/jstl/core"

我知道改变是没有意义的——它只是说明了我的问题。

重建/重新部署后,当您转到 viewContact 页面并尝试添加任何新评论时,您将获得:

请求处理期间的异常:

Caused by javax.servlet.ServletException with message: "java.lang.IllegalStateException: org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing: org.jboss.seam.example.contactlist.Comment.contact -> org.jboss.seam.example.contactlist.Contact"

现在让我们做一些其他更改,以便在进入 viewContact 页面后开始长时间运行的对话(并在持续评论后结束它)

在 pages.xml 中插入这个片段:

<page view-id="/viewContact.xhtml">
    <begin-conversation />
    <param name="contactId" value="#{contactHome.id}" converterId="javax.faces.Long" />
    <navigation>
        <rule if-outcome="persisted">
            <end-conversation />
            <redirect />
        </rule>
        <rule if-outcome="removed">
            <redirect view-id="/search.xhtml" />
        </rule>
    </navigation>
</page>

在 viewContact.xhtml 中更改提交按钮:

<h:commandLink id="submit" action="#{commentHome.persist}" value="Create Comment" >
  <s:conversationId/>
</h:commandLink>

现在,在重新部署之后,可以添加新的注释——不会抛出异常。

有人可以向我解释为什么在没有长时间对话的情况下使用 jstl 标签不适用于 seam 2.3?

4

1 回答 1

1

此问题的解决方案是关闭部分状态保存。只需将其添加到 web.xml:

<context-param>
    <param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
    <param-value>false</param-value>
</context-param>
于 2013-10-30T08:20:16.663 回答