在数据库里设置默认值current_timestamp可以维护创建时间,设置on update current_timestamp 可以维护更新时间.在JPA中应该如何去做呢?这里还是以上篇Topic为基础,给这个类添加这两个字段. @Entity @Table public class Topic implements Serializable{ private static final long serialVersionUID = -7752115605498533357L; @Id @G…