SelectBooleanCheckbox呈现状态与辅助bean不匹配

时间:2012-01-18 07:27:09

标签: jsf-2 wizard conversation-scope

我正在使用JSF2.0并正在构建一个向导。我遇到了SelectBooleanCheckboxes的问题。这是工作流程:

  • 带有复选框的加载页面(值绑定到辅助bean中的SortedMap)。
  • 勾选它们,然后单击“下一步”。这会增加光标,页面使用该光标来确定加载哪个PanelGroup。
  • (正确)值持久保存到bean。
  • 单击返回(光标递减),页面呈现可编辑的复选框。第一个复选框未勾选(即使绑定变量对该框保持值为true)。

这种基于游标的方法(包含所有向导屏幕)似乎不起作用。但是,如果我稍微修改它以使prev / next按钮显示不同的xhtml页面,则此问题将消失。

不幸的是我无法做到这一点。我们将把这个向导插入模态对话框,因此访问prev / next上的新页面将无法正常工作

我写了一个小例子(而不是要求你浏览整个巫师)。

这是Java类:

@ConversationScoped
@Named("hashBool")
public class HashBoolTest2 implements Serializable {   

    private static final long serialVersionUID = 1962031429874426411L;

    @Inject private Conversation conversation;

    private List<RestrictionItem> list;
    private SortedMap<String, Boolean> values;

    private int cursor;

    public HashBoolTest2( ) {
        List<String> none = new ArrayList<String>();
        none.add("");

        this.setList( new ArrayList< RestrictionItem >( ) );
        this.getList().add( new RestrictionItem( "a", "a", none ) );
        ...
        this.getList().add( new RestrictionItem( "e", "e", none ) );

        this.setValues( new TreeMap< String, Boolean >() );

        this.setCursor( 0 );
    }

    @PostConstruct
    public void andThis() {
        this.conversation.begin( );
    }

    // getters and setters for instance variables

    @Override
    public String toString() {
        return "Values : " + this.values.toString( ) + " List: " + this.list.toString( );
    }

    public void kill() {
        this.conversation.end( );
    }

    public void doNext(ActionEvent e) {
        this.cursor++;
    }

    public void doPrev(ActionEvent e) {
        this.cursor--;
    }
}

以下是XHTML片段:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:ui="http://java.sun.com/jsf/facelets"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:f="http://java.sun.com/jsf/core"
  xmlns:c="http://java.sun.com/jsp/jstl/core">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>IGNORED</title>
</head>
<body>
  <ui:composition>
    <h:panelGroup id="container">
      <h:form>
        <!-- edit state -->
        <h:panelGroup id="edit" rendered="#{hashBool.cursor eq 0}">
            <code>
              <h:outputText value="#{hashBool.toString()}" escape="false"/>
            </code>

            <ul>
              <ui:repeat value="#{hashBool.list}" var="elem">
                <li>
                  <h:selectBooleanCheckbox id="elem" value="#{hashBool.values[elem.id]}" title="#{elem.displayName}" />
                  <h:outputLabel for="elem" value="#{elem.displayName}"/>
                </li>
              </ui:repeat>
            </ul>
        </h:panelGroup>

        <!-- view state -->
        <h:panelGroup id="view" rendered="#{hashBool.cursor eq 1}">
          <code>
            <h:outputText value="#{hashBool.toString()}" escape="false"/>
          </code>
        </h:panelGroup>

        <br/>

        <!-- buttons -->
        <h:panelGroup id="buttons">
          <f:ajax render=":container">
            <h:commandButton value="Prev" actionListener="#{hashBool.doPrev}"/>
            <h:commandButton value="Next" actionListener="#{hashBool.doNext}"/>
          </f:ajax>
          <h:commandButton value="Kill" actionListener="#{hashBool.kill()}"/>
        </h:panelGroup>

      </h:form>
    </h:panelGroup>
  </ui:composition>
</body>
</html>

欢迎任何建议! (对不起,如果这是一个双重帖子,我在这里搜索时能够发现任何类似的东西)

1 个答案:

答案 0 :(得分:0)

主要是为了确保古人的智慧保持正确记录(http://xkcd.com/979/):原来这是JSF 2.0.2(与Liferay 6.0 GA 4捆绑在一起)中的一个错误。有关详细信息,请参阅此处:http://java.net/jira/browse/JAVASERVERFACES-1561