Can anyone tell me whats the advantage of load() vs get() in Hibernate ?
|
|
Explanation of semantics of these methods doesn't explain the practical difference between them. Practical rule is the following:
|
||||
|
|
|
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 |
|||
|
|
|
load will return a proxy object. get will return a actual object, and returns null if it wont find any object. |
|||||||
|
|
From the "Java Persistence with Hibernate" book, page 405:
|
|||
|
|
|
When Load is called it returns a Proxy object. Actual select query is still not fired. When we use any of the mapped property for the first time the actual query is fired. If row does not exist in DB it will throw exception. e.g.
Here sw is of proxy type. And select query is not yet called. in Eclipse debugger you may see it like
when I use
the select query is fired. And now proxy now knows values for all the mapped properties. Where as when get is called, select query is fired immediately. The returned object is not proxy but of actual class. e.g.
Here sw is of type Software itself. If row exists then all mapped properties are populated with the values in DB. If row does not exist then sw will be null.
So as always said, use load only if you are sure that record does exist in DB. In that case it is harmless to work with the proxy and will be helpful delaying DB query till the mapped property is actually needed. |
|||
|
|