Im asking if there is any way to achive the Jboss hibernate tools reverse engineering
generating the annotations on the fields
besides the methods
(witch comes by default i think). I know that there are two types of AccessType
: FIELD
and METHOD
, in this case, im trying to get the METHOD
mode by default with the tool.
I tried to search on the documentation, but i didin't find anything... Hope somone can help me.
A simple example of what i want:
@Column(name = "ACCESS", unique = true, nullable = false)
private String access;
A simple example of what i get:
@Column(name = "ACCESS", unique = true, nullable = false)
public String getAccess() {
return access;
}