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

时间:2010-11-03 01:21:24

标签: java jsf-2 composite-component

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

我假设insertChildren标签被绑定到managedBean,但是我希望有人可以让我摆脱困境并向我展示一个解决方法 - 我真的不想开始使用@ SessionScoped bean。 :)

这是我的简化示例。 Simple Managed 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>

有任何想法或建议吗?

提前致谢。

1 个答案:

答案 0 :(得分:2)

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

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

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