-->
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: sortierung in one-many Beziehung
PostPosted: Fri Sep 07, 2007 12:40 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());

}
hypsession.close();
}

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.


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.