我正在尝试开发一个从列表中输出文本的复合体。要显示的列表和项属性必须设置为参数。所以我创建了这个复合(为了简化我只保留了必要的东西):
<?xml version="1.0" encoding="UTF-8"?>
<!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:c="http://java.sun.com/jsp/jstl/core"
xmlns:h="http://java.sun.com/jsf/html" xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:p="http://primefaces.org/ui" xmlns:o="http://omnifaces.org/ui"
xmlns:composite="http://xmlns.jcp.org/jsf/composite" xmlns:bt="http://xmlns.jcp.org/jsf/composite/tags/bt">
<composite:interface>
<composite:attribute name="id" />
<composite:attribute name="list" shortDescription="Output list (items itself)" />
<composite:attribute name="listValue" shortDescription="Bean attribute to be displayed in the list" />
</composite:interface>
<composite:implementation>
<h:panelGroup id="#{cc.attrs.id}" layout="block">
<p:repeat var="item" value="#{cc.attrs.list}">
<h:outputText value="#{item[cc.attrs.listValue]}" />
</p:repeat>
</h:panelGroup>
</composite:implementation>
</html>
用法:
<bt:selectToDataTable id="rolesSd" list="#{aclControlBean.componentSecurity.roles}" listValue="name" />
componentSecurity.roles是Hibernate JPA Entity,角色是Set。
当我加载页面时,获取此异常:
Caused by: javax.el.PropertyNotFoundException: The class 'org.hibernate.collection.internal.PersistentSet' does not have the property 'name'.
at javax.el.BeanELResolver.getBeanProperty(BeanELResolver.java:568)
at javax.el.BeanELResolver.getValue(BeanELResolver.java:229)
at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:176)
at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:203)
at com.sun.el.parser.AstValue.getValue(AstValue.java:139)
at com.sun.el.parser.AstValue.getValue(AstValue.java:203)
at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:226)
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50)
at com.sun.faces.facelets.el.ContextualCompositeValueExpression.getValue(ContextualCompositeValueExpression.java:158)
at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:109)
... 105 more
在渲染视图时似乎没有考虑'var'属性,因为它试图从PersistentSet获取属性而不是'roles'Set中的项。
有关正在发生的事情的任何想法?
提前致谢。
答案 0 :(得分:0)
好的,发现了问题。要在这里添加我的答案,以帮助其他人解决同样的问题。
正在发生的事情是,在JSF中我不能迭代Set,它必须是List类型。所以我从Set改为List,它现在正在工作。
无论如何,请你们帮忙!