-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: [Criteria][One-to-Many][FetchMode.EAGER] bug de Hibernate?
PostPosted: Fri May 15, 2009 7:58 am 
Newbie

Joined: Fri May 15, 2009 7:15 am
Posts: 2
je decouvre un bug de recherche par criteria lorsqu'un entity a une relation one-to-many avec fectch mode EAGER.

La recherche par criteria retourne des doublons alors que la recherche par query retourne le bon résultat.
Code:
class Entity {
   
    private OtherEntitty otherEntity;

    private Map<String, String> map;

    @CollectionOfElements(fetch=FetchType.EAGER) // mapper une collection de type primitif
    @JoinTable(name="map")
    @JoinColumn(name="entity")
    @MapKey(columns=@Column(name="name"))
    @Column(name="value")
    //@Lob // si value est du type clob
    public Map<String, String> getMap() {
        //getter
    }
...

// retourne des doublons 
  hibernateTemplate.createCriteria(Entity.class).add(Restrictions.eq("otherEntity", otherEntity)).list();

// retourne bon résultat

hibernateTemplate.createQuery("from Entity e where e.otherEntity = :otherEntity").setEntity("otherEntity", otherEntity).list();
}


Alors, lorsque j'enlève fetch=FetchType.EAGER de @CollectionOfElements, la recherche par criteria ne retourne plus de doublon.

Est ce que c'est un bug ou un comportement normal de Hibernate?

Merci pour votre lumière!


Top
 Profile  
 
 Post subject: Re: [Criteria][One-to-Many][FetchMode.EAGER] bug de Hibernate?
PostPosted: Mon May 25, 2009 8:22 am 
Beginner
Beginner

Joined: Thu Jun 30, 2005 1:04 pm
Posts: 26
Bonjour,

Ajoutes setResultTransformer(Criteria.DISTINCT_ROOT_ENTITY) à ton Criteria
Ca devrait éliminer les doublons.


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.