Beginner |
 |
Joined: Wed Feb 23, 2005 10:26 am Posts: 22
|
hi there this is a nubiee question....
I was reading through the HIA book and on page 80 and have two questions , was hoping if you could shed some light on it
1. U describe that is a better stragetry to access attributes of a class via getter and setter methods.
Then what is the beneift of using access= "field" in the property tag ? Does it mean that i dont have to create getter and setter methods ?
When it is benefical to do this ?
2. In caveatemptor-0.9.5 ,in item.hbm.xml for example you have defined
.....
<!-- Name of the item is immutable. -->
<property name="name"
type="string"
column="NAME"
length="255"
not-null="true"
update="false"
access="org.hibernate.auction.persistence.DirectSetAccessor"/>
what is the benefit of the DirectSetAccessor ? Because in Item.java u do create a getter and setter method for the name attribute.
Thank you
-reeve
|
|