-->
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: Find by Example inkl. der Fremdschlüsselbeziehungen?
PostPosted: Sat Oct 13, 2007 12:35 pm 
Newbie

Joined: Mon Apr 24, 2006 4:08 am
Posts: 5
Hi,

leider habe ich bislang keine Lösung für folgendes Problem gefunden, wobei ich mir denken könnte, dass dies eigentlich nicht so schwer sein sollte. Beherrsche die Hibernate Criteria API allerdings auch noch nicht so gut.

Hier das Problem. Ich habe eine Klasse Parent und eine Klasse Child:

Code:
class Parent {

   @OneToMany(cascade={...}, mappedBy="parent")
   private Set<Child> children;
}

class Child {
    @ManyToOne(cascade={....})
    @JoinColumn(name="parent_id",nullable=false)
    private Parent parent;
}


Nun würde ich mit der Criteria API gerne folgende Abfrage formulieren:

Code:
select * from child where parent_id=? and [Bedingung durch Example.create(<ChildrenObjekt>)]


Einzige Bedingung dabei ist, dass die Criteria generisch sein muss, d.h. sollte bspw. auch für die Klassen Father und Son, Baum und Apfel etc. gelten, welche die gleiche Beziehung wie Parent und Child aufweisen.

Ein Join sollte aus Performancegründen möglichst vermieden werden.

Ich hoffe diese Lösung dann für mehrere Fremdschlüssel ala
Code:
select * from child where mother_id=? and father_id=? and [Bedingung durch Example.create(<ChildrenOjekt>)]

ausweiten zu können.


Vielen Dank im vorraus,

Danny


Top
 Profile  
 
 Post subject:
PostPosted: Sun Oct 14, 2007 1:52 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
geht folgendes denn nicht?

createCriteria(Child.class).add(Restriction.eq("parent",parentObject))

(+ natürlich Dein Example)

_________________
Best Regards
Sebastian
---
Training for Hibernate and Java Persistence
Tutorials for Hibernate, Spring, EJB, JSF...
eBook: Hibernate 3 - DeveloperGuide
Paper book: Hibernate 3 - Das Praxisbuch
http://www.laliluna.de


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.