|
To get one object by primary key:
getHibernateTemplate().load(MyObject.class, primaryKey);
for a list using HQL:
getHibernateTemplate().find("from MyObject obj where obj.recordStatus='A' ");
or use the Criteria API which personally I think is awesome
__________________
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
|