Can anyone tell me what\'s the advantage of load() vs get() in Hibernate?
load()
get()
load will return a proxy object.
get will return a actual object, and returns null if it wont find any object.