我正在实现一个 JSF 组件,需要有条件地添加一些属性。这个问题与之前的JSF 类似: p:dataTable with f:attribute results in "argument type mismatch" error,但错误信息完全不同,所以我提出了一个新问题。
<composite:interface>
<composite:attribute name="filter" required="false" default="false"
type="java.lang.Boolean"/>
<composite:attribute name="rows" required="false" default="15"
type="java.lang.Integer"/>
...
</composite:interface>
<composite:implementation>
<p:dataTable ivar="p" value="#{cc.attrs.dm}">
<c:if test="#{cc.attrs.filter}">
<f:attribute name="paginator" value="#{true}"/>
<f:attribute name="rows" value="#{cc.attrs.rows}"/>
</c:if>
...
<p:dataTable>
</composite:implementation>
这会导致错误java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
。即使我手动设置它,我也会收到错误:
<f:attribute name="rows" value="15"/> ... argument type mismatch
<f:attribute name="rows" value="#{15}"/> ... java.lang.Long cannot be cast
to java.lang.Integer
如果我直接添加属性,也不例外,并且显示正确的行数:
<p:dataTable var="p" value="#{cc.attrs.dm}" rows="#{cc.attrs.rows}">