1

I have bean:

class Property{
 private String type;
 private Date value;
 //getters and setters
}

also have block of code on page:

<ui:fragment rendered="#{property.type eq 'checkbox'}">
    <ui:include src="checkbox.xhtml">
        <ui:param name="property" value="#{property}"/>
    </ui:include>
</ui:fragment>

checkbox.xhtml:

<!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:h="http://java.sun.com/jsf/html"
      xmlns:ui="http://java.sun.com/jsf/facelets"
      xmlns:f="http://java.sun.com/jsf/core">
    <body>
        <ui:composition>
            <h:selectBooleanCheckbox value="#{property.value}"/>
        </ui:composition>
    </body>
</html>

The condition #{property.type eq 'checkbox'} = false

But I get next exception:

javax.servlet.ServletException: checkBox.xhtml value="#{property.value}": Cannot convert 01.11.02 0:00 of type class java.util.Date to class java.lang.Boolean

I expect if the attribute rendered=false in ui:include, then this block will not be processed.

4

1 回答 1

2

<ui:fragment rendered>阻止它呈现 HTML 输出,但它不会阻止它最终出现在 JSF 组件树中并有资格进行状态保存。

改为使用<c:if test>。它在视图构建时间而不是视图渲染时间运行,因此整个过程根本不会出现在 JSF 组件树中。

或者,如果您将所有内容都包含在一个<ui:repeat var="property">. 中,并且您正在使用 Mojarra,则至少升级到 2.1.29 或 2.2.7,其中修复了此状态保存错误。

也可以看看:

于 2015-02-17T14:23:07.347 回答