@Id
int master_id;
@Id
int id;
... this does not work:
User user= (User) session.load(User.class, new Integer(master_id), new Integer(id));
load(Class theClass, Serializable id)
I replaced the last two arguments with a serializable object and still cannot extract the object.
parvin
source
share