I'm a bit confused about how getters and setters in JPA annotated POJO classes interact with a proposed MySQL database via Hibernate.
I understand that you can have, for example, the following:
@Entity
@Table(appliesTo = "users")
public class UserDM implements UserIF, Serializable {
private static final long serialVersionUID = 1L;
private long id;
private String name;
private Date createDate;
@Id
@Column(name="id")
@GeneratedValue(strategy=GenerationType.AUTO)
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(final String n) {
name = n;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(final long time) {
createDate = new Date(time);
}
}
Why is the auto ID generation strategy associated with the Getter?
How does that method actually auto-incremeent the ID when a new user is stored?
What is the order of operations? The POJO is filled via setters (or maybe a constructor?) and then the info is acquired by hibernate via getters and then stored into the db?
Is it a good idea to have my "getCreateDate" method return a date, or is it best to have the fields in pojos map to MySQL-friendly fields? If I wanted to get a Date object from a timestamp ms value, would the best way to do that be to use a transient mapped function?