-->
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.  [ 5 posts ] 
Author Message
 Post subject: Hibernate search on multiple tables
PostPosted: Tue May 21, 2013 8:10 pm 
Newbie

Joined: Sun May 19, 2013 2:44 pm
Posts: 10
I've multiple entities with foreign key associations.

Entity A

private String name;
@OneToMany
private Set<B> b;

Entity B

private String name;
@OneToMany
private Set<C> c;

Entity C

private String name;

Search can be performed on any name (A.name, B.name, C.name). If the search is performed on C.name, is it possible to return entities A and B as they are related to C?


Top
 Profile  
 
 Post subject: Re: Hibernate search on multiple tables
PostPosted: Wed May 22, 2013 10:22 am 
Newbie

Joined: Sun May 19, 2013 2:44 pm
Posts: 10
can anyone answer my question, please?


Top
 Profile  
 
 Post subject: Re: Hibernate search on multiple tables
PostPosted: Wed May 22, 2013 11:49 am 
Newbie

Joined: Tue May 21, 2013 3:47 pm
Posts: 4
you can get that by using hql.

and it goes as:

String query ="from A a, B b, C c
where c.name = a.name and c.name = b.name";

return getHibernateTemplate().find(query);

it will return too you all three objects. I dont know how to return only one object C


Top
 Profile  
 
 Post subject: Re: Hibernate search on multiple tables
PostPosted: Wed May 22, 2013 11:54 am 
Newbie

Joined: Sun May 19, 2013 2:44 pm
Posts: 10
I'm planning to implement Hibernate Search.


Top
 Profile  
 
 Post subject: Re: Hibernate search on multiple tables
PostPosted: Thu May 30, 2013 4:56 am 
Hibernate Team
Hibernate Team

Joined: Fri Oct 05, 2007 4:47 pm
Posts: 2536
Location: Third rock from the Sun
Yes you can target just C, or any combination of A, B, C classes with the same query.

You likely want to read about @IndexedEmbedded

_________________
Sanne
http://in.relation.to/


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 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.