javax.el.PropertyNotFoundException:在类型org.hibernate.collection.internal.PersistentSet

时间:2015-07-20 11:23:23

标签: hibernate jsf many-to-many propertynotfoundexception

我尝试从ManyToMany关联中恢复数据,但我不能,这是我的代码。

实体产品:

@Entity
public class Produit implements Serializable {

@Id
@Column(name="Produit_ID")
@GeneratedValue
private Long id;
private String dq;
private String icForme;
private String ich;
private String icht;

@ManyToMany(cascade = {CascadeType.ALL})
 @JoinTable(name="produit_terminal", 
                joinColumns={@JoinColumn(name="Produit_ID")}, 
                inverseJoinColumns={@JoinColumn(name="Terminal_ID")})
    private Set<Terminal> terminals = new HashSet<Terminal>();

//getter setter

实体终端:

@Entity
public class Terminal implements Serializable{

@Id
@GeneratedValue
@Column(name="Terminal_ID")
private Long id;
private String crimpkontakt;
private String equipment;
private String geometrie;
private String dcbt;
private String icb;
private String ak;

@ManyToMany(mappedBy="terminals")
private Set<Produit> produit = new HashSet<Produit>();

//getter setter

课程:ModuleJPADao

public List<Produit> parProduit(String cat){
    cat = "%" + cat + "%";
    Query query = getEntityManger().createQuery( "from "+ getPersistentClass().getSimpleName()
            +" u where u.produit LIKE :cat").setParameter( "cat", cat );
    List<Produit> module = (List) query.getResultList();
    return module;

}

类:ModuleService

public List<Produit> tousModuleProduit(String produit) {

    if(produit!= null){
        return moduleDao.parProduit(produit);
    }
    else{
        return null;
    }
}

主flow.xml

<view-state id="accueil" view="accueil.xhtml">
    <on-render>
        <evaluate expression="moduleService.tousModuleProduit(module.getProduit())"
            result="viewScope.recherche" />

    </on-render>
</view-state>

file.xhtml

 <p:accordionPanel value="#{recherche}" var="car">

                    <p:tab title="IcForme : #{car.icForme}">

                        <h:panelGrid columns="4" cellspacing="20">

                            <p:outputLabel value="ICHT: " />
                            <p:inputText value="#{car.icht}" />

                            <p:outputLabel value="terminals : " />
                            <h:form>
                                <h:dataTable value="#{car.terminals}" var="der" >
                                    <p:column>
                                        <h:outputText value="#{der.geometrie}" />
                                    </p:column>

                                </h:dataTable>
                            </h:form>


                        </h:panelGrid>
        ....

我无法获得geometrie的价值;我得到了这个错误:

javax.el.PropertyNotFoundException: /WEB-INF/flows/main/accueil.xhtml @84,53 value="#{der.geometrie}": Property 'geometrie' not found on type org.hibernate.collection.internal.PersistentSet

1 个答案:

答案 0 :(得分:15)

wResId
     

javax.el.PropertyNotFoundException:在org.hibernate.collection.internal.PersistentSet类型中找不到属性'geometrie'

因此,<h:dataTable value="#{car.terminals}" var="der"> <p:column> <h:outputText value="#{der.geometrie}" /> #{car.terminals}Set<E><h:dataTable><p:dataTable>组件不支持迭代<ui:repeat>。然后Set<E>基本上代表#{der}本身。迭代Set<E>的内置支持将在未来的JSF 2.3版本中出现。

如果不能用Set<E>替换Set<E>,那么只需从中获取一个数组,如下所示:

List<E>