-->
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: Frage: Einfluss auf eingebette Entitäen über Query-Sttmnt
PostPosted: Mon Jun 25, 2007 3:23 pm 
Newbie

Joined: Mon Jun 25, 2007 3:06 pm
Posts: 5
Hallo Forum,

vielleicht eine Anfängerfrage, aber sie beschäftigt mich zur Zeit ziemlich:

Ich habe eine
@entity die als property eine weitere @entity enthält.

Code:
@entity
@Table(name = "book")

public class Book {
  private List<Chapter> chapters

  @OneToMany(cascade = CascadeType.ALL)
  @JoinColumn(name = "chapter_fk")
  public List<Chapter> getChapters() {
     return chapters;
  }

}


Soweit so gut. Meinem BookDao (Spring based) liefert mir entsprechend meiner Query ganz normal über getHibernateTemplate.find("from Book") alle Book Objekte mit den gefüllten Chapters zurück.

Meine Frage nun ist: Gibt es eine Möglichkeit, Einfluss auf die Auswahl von Chapter zu nehmen. D.h. ich suche eine Möglichkeit, über eine Query Einfluss auf die Chapter selection zu nehmen.

Zur Zeit liefert die @OneToMane Abfrage alles zurück, was zum chpater_fk passt. Ich möchte aber, dass ich z.B. eine Möglichkeit habe, nach dem Chapter.id zu filtern, so dass ich nur 1 Kapitel bekomme.

D.h. gibt es eine Möglichkeit in der find(...) Methode Einfluss auf die enthaltenen Entitäten zu nehmen?

TIA
John


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jul 09, 2007 2:34 pm 
Newbie

Joined: Tue Sep 19, 2006 6:47 am
Posts: 15
Du kannst es mal mit Batch-Fetching versuchen, obwohl ich nicht weiß, wie man das per Annotation definiert.

Hier ist die Doku: http://www.hibernate.org/hib_docs/refer ... mance.html, Kapitel "19.1.5. Using batch fetching"


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.