@Entity @Table(name="RS_SIGNUPUSER") public class RsSignUpUser { @Id @GenericGenerator(name="UUIDGENERATE",strategy="uuid2") @GeneratedValue(generator="UUIDGENERATE") @Column(name="ID",length=36) private S
在数据库里设置默认值current_timestamp可以维护创建时间,设置on update current_timestamp 可以维护更新时间.在JPA中应该如何去做呢?这里还是以上篇Topic为基础,给这个类添加这两个字段. @Entity @Table public class Topic implements Serializable{ private static final long serialVersionUID = -7752115605498533357L; @Id @G
首先创建一个BaseModel,自动生成创建时间和更新时间 @SuppressWarnings("serial") @MappedSuperclass public class BaseModel implements Serializable{ @Temporal(TemporalType.TIMESTAMP) @Column(insertable=false, updatable=false) @CreationTimestamp protected Date createTime