-->
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.  [ 4 posts ] 
Author Message
 Post subject: Problem mit Criteria API
PostPosted: Thu Sep 13, 2007 5:04 am 
Newbie

Joined: Thu Sep 13, 2007 4:50 am
Posts: 2
Location: Germany
Hallo zusammen,

ich bin ein Hibernate-Newby habe aber bereits Hibernate am laufen und "normales" Speichern und Laden ist auch kein Problem mehr ;-)

Jetzt beiße ich mir aber an einer Abfrage schon einige Zeit die Zähne aus. Vielleicht kann ja jemand helfen...

Folgendes Problem: Ich habe eine Klasse Group zur Repräsentation einer Anwendergruppe. Die Klasse besitzt eine Liste die wiederrum Instanzen der Klasse Gruppe enthält (zur Abbildung einer Gruppen-Hierarchie).

Hier das Hibernate-Mapping



Code:
<hibernate-mapping package="test.hibernate">
   <class name="Group">
      <id name="key" column="GROUP_KEY">
         <generator class="sequence">
            <param name="sequence">GROUP_SEQ</param>
         </generator>
      </id>
      <property name="name" />
      
      <bag name="groups" table="GROUP_GROUP_REL" cascade="save-update">
         <key column="MASTER_KEY"/>
                  <many-to-many column="DETAIL_KEY" class="Group"/>
      </bag>
   </class>
</hibernate-mapping>


Jetzt versuche ich mittels der Criteria-API zu einer Gruppe (gegebener key) die direkten Untergruppen abzufragen. Leider ohne Erfolg...

Kann mir jemand helfen?

Die HQL-Query die das Problem löst ist eigentlich sehr einfach:

Code:
"select g.groups from Group g where g.key = :key"




Schonmal Danke...


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 15, 2007 4:38 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Code:
from Group g left join g.groups xy where xy.attribut = ?

Bei 1:n m:n muss immer ein Alias gebildet werden. Bei 1:1 bzw. n:1 würde
Code:
from Group g where g.parentGroup.attribut = ?

funktionieren

_________________
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  
 
 Post subject:
PostPosted: Tue Sep 18, 2007 5:57 am 
Newbie

Joined: Thu Sep 13, 2007 4:50 am
Posts: 2
Location: Germany
Danke für die Antwort. Aber ich suche nach einer Lösung mit der Criteria-API. Ein HQL-Query habe ich ja bereits....


Top
 Profile  
 
 Post subject:
PostPosted: Tue Oct 02, 2007 5:13 am 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Einen Alias kann mit createCriteria oder createAlias erzeugen.

session.createCriteria(class).createCriteria("groups").add(Restriction auf 2. critieria)

_________________
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.  [ 4 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.