Links
在模型类上添加注解
import javax.persistence.EntityListeners;import org.springframework.data.jpa.domain.support.AuditingEntityListener;@EntityListeners(AuditingEntityListener.class)
在字段上添加注解
import org.springframework.data.annotation.CreatedDate;import org.springframework.data.annotation.LastModifiedDate;@CreatedDate@Column(nullable = false, updatable = false)private Date createdAt;@LastModifiedDate@Column(nullable = false)private Date updatedAt;
在启动类上添加注解
import org.springframework.data.jpa.repository.config.EnableJpaAuditing;@EnableJpaAuditing
