4

我遇到了一个问题,我的 @ViewScoped 托管 bean 的行为就像 @RequestScoped managedBean 只是因为我使用的是复合:insertChildren 标记。我已阅读有关该主题的其他帖子,并且知道@ViewScoped managedBeans 的局限性,但我没有任何显式绑定,也没有在我的复合组件中使用 JSTL。

我假设 insertChildren 标记被绑定到 managedBean,但我希望有人可以让我摆脱痛苦并告诉我一个解决方法——我真的不想开始使用 @SessionScoped bean。:)

这是我的简化示例。简单托管 Bean:

@ManagedBean(name = "simpleMB")
@ViewScoped
public class SimpleManagedBean implements Serializable {

   private static final long serialVersionUID = -1;

   @NotNull
   @Email
   private String email;

   public SimpleManagedBean() {
      System.out.println("SimpleManagedBean");
   }

   @PostConstruct
   public void postConstruct() {
       System.out.println("Post construct");
   }

   public String submit() {
       return null;
   }

   ... setter and getter
}

使用上面的 SimpleManagedBean 和下面的表单和复合组件(没有 insertChildren),一切都按预期工作。我输入一些文本,按提交,错误与输入的文本一起显示。在这一点上,我很高兴。

<h:form>
    <foo:simpleNoChildren />

    <h:commandButton id="submit" 
                     value="Submit" 
                     action="#{simpleMB.submit}" />
</h:form> 

... and the composite component ....

<composite:interface />
<composite:implementation>

<h:panelGrid columns="3">
    <h:outputText value="Email"  />

    <h:inputText id="email" 
                 value="#{simpleMB.email}"
                 required="true" />

    <h:message for="email" />
</h:panelGrid>

</composite:implementation>

现在,如果我将 panelGrid 及其组件从复合组件中移出并替换为 Composite:insertChildren 标记,如下所示,当我输入一些文本并按下提交时,会显示正确的错误消息,但由于 @PostConstruct 方法再次调用,我输入的文本不再显示。:(

<h:form>
  <foo:simple>

    <h:panelGrid columns="3">
     <h:outputText value="Email"  />           
     <h:inputText id="email" value="#{simpleMB.email}" required="true" />
         <h:message for="email" />
    </h:panelGrid>

  </foo:simple>       

  <h:commandButton id="submit" value="Submit" action="#{simpleMB.submit}" />
</h:form> 

... and my complicated composite component :) ...

<composite:interface /> 
<composite:implementation>
   <composite:insertChildren />
</composite:implementation>

有什么想法或建议吗?

提前致谢。

4

1 回答 1

2

对于其他有同样问题的人:

这是 JSF 中的一个已知错误 -> 更多信息请参阅http://java.net/jira/browse/JAVASERVERFACES-2040

一种可能的解决方法是将构面添加到复合界面并使用 cc:renderFacet 而不是 cc:insertChildren 呈现构面。

于 2011-11-03T09:44:45.910 回答