java – JSF 2复合组件insertChildren标签使@ViewScoped成为@RequestScoped :(

我遇到的问题是我的@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及其组件从复合组件中移出并替换为复合: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>

有什么想法或建议吗?

提前致谢.

最佳答案 对于有同样问题的其他人:

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

一种可能的解决方法是在复合接口中添加一个构面,并使用cc:renderFacet而不是cc:insertChildren渲染构面.

点赞