Where do i put my hibernate annotations?
Is it the line above my instance variable? Or before the getter? Or before the setter? Or doesn't it really matter?
Thanks a lot
|
Where do i put my hibernate annotations? Is it the line above my instance variable? Or before the getter? Or before the setter? Or doesn't it really matter? Thanks a lot |
|||||||
|
|
You place them either on the field or on the getter. From the Hibernate Annotations Reference Guide:
You might also want to read about the
Regarding the pros and cons of both styles, I suggest to read the following questions: |
|||||||||||
|
|
It's up to your style. You may put it before the field or before getter. In strict JPA, the annotations on setters are ignored, but I'm not sure if Hibernate follows that. You either need to be consistent throughout your Entity, or you need to provide an @Access annotation at the top of the class with a default mode, and another @Access before each field/property you wish to deviate from the current class mode. |
|||
|
|
|
Hibernate is known to use Java reflection. So it really doesn't matter whether you put it above the filed or above the getter. |
|||
|
|