![](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FbRqXKu%2FbtsmRN5CykG%2Fy8hU4AdtiyEO89fAmTDJf0%2Fimg.png)
[Spring / JPA] 엔티티 생성/수정 시각 자동화 Auditing
·
Framework & Library/Spring
엔티티를 생성, 변경할 때 변경한 사람과 시간을 추적하는 기능이 대부분 있어야한다. 📕 순수 JPA 사용 📗 등록일, 수정일 [JpaBaseEntity] @MappedSuperclass public class JpaBaseEntity { @Column(updatable = false) private LocalDateTime createDate; private LocalDateTime updateDate; @PrePersist public void prePersist() { LocalDateTime now = LocalDateTime.now(); createDate = now; updateDate = now; } @PreUpdate public void preUpdate() { updateDate = ..