How can hibernate can access a private field/method of a java class , for example to set the @Id ?
Thanks
|
How can hibernate can access a private field/method of a java class , for example to set the @Id ? Thanks |
|||
|
|
|
Like Crippledsmurf says, it uses reflection. See Reflection: Breaking all the Rules and Hibernate: Preserving an Object's Contract. |
|||
|
|
|
Try
prints
|
|||
|
|
|
At a guess I would say that this is done by reflecting on the target type and setting the fields directly using reflection I am not a java programmer but I believe java has reflection support similar to that of .NET which I do use |
|||
|
|