-->
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.  [ 1 post ] 
Author Message
 Post subject: N occurrence de la même entité
PostPosted: Sat Nov 29, 2008 9:46 am 
Newbie

Joined: Sat Nov 29, 2008 9:36 am
Posts: 1
Bonjour à tous,

J'ai deux classes ayant une relation OneToMany et ManyToOne.

@Entity
@Table(name="loan")
public class Loan extends EntityModel {
@OneToMany(cascade = CascadeType.ALL, fetch=FetchType.EAGER, mappedBy="loan")
public Set<Offer> getOffers() {
return offers;
}
...

@Entity
@Table(name="offer")
public class Offer extends EntityModel {
@ManyToOne(cascade=CascadeType.ALL)
@JoinColumn(name="loan_id_fk",nullable=false,unique=false)
public Loan getLoan() {
return loan;
}
...


Lorsque j'exécute la requête suivante sur Loan, j'obtiens plusieurs occurrence de la même entité.

public List<Loan> getCurrentLoans() {
DetachedCriteria criteria = DetachedCriteria.forClass(Loan.class).add(
Restrictions.eq("status.id", new Long(1))).addOrder(
Order.desc("id"));
List<Loan> listOfLoans = getHibernateTemplate().findByCriteria(criteria);
return listOfLoans;
}

Une idée?????


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

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.