Can anyone tell me what\'s the advantage of load() vs get() in Hibernate?
load()
get()
A: This is explained in the hibernate reference. One difference was performance and the other one is that load throws an unrecoverable Exception when no Object is found for the ID.
More details here