Results 1 to 5 of 5
Thread: Search in hibernate
- 05-05-2007, 12:27 AM #1
Member
- Join Date
- May 2007
- Posts
- 38
- Rep Power
- 0
Search in hibernate
Hi!
I have a bean defined with the follow properties:
Normally, to search topics for an user I did:Java Code:public class UserTopic implements java.io.Serializable { private UserTopicId id; private Topic topic; private int personal = 0; ------- UserTopicId is: ----------- public class UserTopicId implements java.io.Serializable { private String topicId; private String userId; -----------
getHibernateTemplate().find(" from UserTopic where user_id = ?", user_id)
but I don't know how do I search with this key
Do you know?
thanksLast edited by Nick15; 06-01-2007 at 12:15 AM.
- 05-05-2007, 12:55 AM #2
Member
- Join Date
- May 2007
- Posts
- 39
- Rep Power
- 0
hi
try this
getHibernateTemplate().find(" from UserTopic ut where ut.id.userId = ?",
user_id)
bye bye
alan
- 05-05-2007, 03:55 PM #3
Member
- Join Date
- May 2007
- Posts
- 41
- Rep Power
- 0
If you have defined the id in the HBM you can do a load:
(key-many-to-one in hibernate 3).
session.load(UserTopic.class, new UserTopicId("id","user");
- 05-07-2007, 06:20 AM #4
Senior Member
- Join Date
- Mar 2007
- Posts
- 134
- Rep Power
- 0
If you are looking for users starting with the given userID you can use the "Criterion" in hibernate .
Like this
Java Code:List users = sess.createCriteria(User.class) .add( Restrictions.like("name", userID+"%") ) .list();
- 05-09-2007, 01:33 PM #5
Member
- Join Date
- May 2007
- Posts
- 38
- Rep Power
- 0
Similar Threads
-
How to search with a Comparator
By Java Tip in forum java.langReplies: 0Last Post: 04-15-2008, 07:39 PM -
Search TextFile
By gsupriyarao@yahoo.com in forum Advanced JavaReplies: 5Last Post: 04-11-2008, 11:03 AM -
Search
By Gilgamesh in forum New To JavaReplies: 5Last Post: 11-26-2007, 03:45 AM -
Web Search
By Marcus in forum Enterprise JavaBeans (EJB)Replies: 2Last Post: 07-02-2007, 06:51 AM -
org.hibernate.ejb.Version <clinit> INFO: Hibernate EntityManager 3.2.0.CR1
By Heather in forum JDBCReplies: 2Last Post: 06-30-2007, 03:01 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks