수정시간1 생성시간, 수정시간 자동화(JPA Auditing) 1. BaseTimeEntity 클래스 생성 kotlin 코드 @MappedSuperclass @EntityListeners(AuditingEntityListener::class) abstract class BaseTimeEntity(@CreatedDate var createdDate: LocalDateTime? = null, @LastModifiedDate var modifiedDate: LocalDateTime? = null) java 코드 @Getter @MappedSuperclass @EntityListeners(AuditingEntityListener.class) public abstract class BaseTimeEntity { @CreatedDate private LocalDateTim.. 2019. 10. 22. 이전 1 다음