-->
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: sortierung in one-many Beziehung
PostPosted: Fri Sep 07, 2007 12:39 pm 
Newbie

Joined: Fri Sep 07, 2007 12:20 pm
Posts: 9
Hallo,

Ich versuche Hibernate mit Spring und ich habe Code unten geschrieben:

TV Programm Hat mehrere Channels.
es gibt eine Beziehung one-to.many von Tv in Richtung Channel.

Jetzt will ich alle channels names von Object Tv mit id(Hjid=3) herausfiltern, so dass die channels names alphabetich sortiert.

Ich habe das Code geschrieben, aber ich bekomme die Namen con channels des Tv id 3 aber nicht sortiert. Hat jemand eine Idee, es wäre sehr hilfsreich. danke.

ps: die Beziehung ist nur in einer Richtung TV-->channel.

ApplicationContext appContext=
WebApplicationContextUtils.getWebApplicationContext(this.getServletContext());
//code wird in JSP seite geschrieben.
SessionFactory o=(SessionFactory)appContext.getBean("sessionFactory");
Session hypsession = o.openSession();
Criteria crit = hypsession.createCriteria(TvTypeImpl.class);
crit.add(Restrictions.eq("Hjid",new Long(3)));//Hjid ist id des TV.
Criteria channelCrit= crit.createCriteria("Channel");
channelCrit.addOrder(Order.asc("Name"));
//channelCrit.setFetchMode("permissions", FetchMode.LAZY);

List<TvTypeImpl> tvList = crit.list();
for (TvTypeImpl list : tvList) {
List<ChannelTypeImpl> channel = list.getChannel();
for(ChannelTypeImpl channelList : channel){


String channelName = channelList.getName());

}

Eine ander Frage bitte: trotz FetchMode.LAZY versucht Tomcat alle Daten der TV und dazugehörigen Cascade Beziehungen laden. Ich will nur TV und channels Daten holen und nicht weiter, macht man das anders.

Ich bin im Hibernate Welt seite eine Woche und ich bin :-(.

Danke nochmal.

hypsession.close();
}


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 11, 2007 12:09 pm 
Expert
Expert

Joined: Tue Nov 23, 2004 7:00 pm
Posts: 570
Location: mostly Frankfurt Germany
Hallo,
Du sortierst nicht den Kanal sondern TV nach dem Namen des Kanals. Schau Dir mal das SQL an, was durch Deine Query erzeugt wird.
Wenn die Kanäle immer nach Namen sortiert sein sollen, dann verwende SortedList als Mapping.
Andere Idee: man müsste eigentlich auch mit Filtern sortieren können.

Auch das Mapping kann das Laden beeinflussen. Evt. hast Du many-to-one Beziehungen, die per Default Eager sind.

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