hibernate-session

Hibernate: Difference between session.get and session.load

雨燕双飞 提交于 2019-11-26 10:08:10
From the API, I could see it has something to do with proxy. But I couldn't find a lot of information on proxy and do not understand the difference between calling session.get and session.load . Could someone please explain or direct me to a reference page? Thank you!! duffymo From the Hibernate forum : This from the book Hibernate in Action. Good one read this.. Retrieving objects by identifier The following Hibernate code snippet retrieves a User object from the database: User user = (User) session.get(User.class, userID); The get() method is special because the identifier uniquely