
트러블슈팅2023. 9. 22. 16:59BaseTimeEntity 적용 안됨
문제 아래와 같이 BaseTimeEntity를 생성하여, Entity들의 생성날짜, 수정날짜를 자동으로 관리하려고 하였으나, DB에 Entity 저장 시 계속 null값으로 들어가는 문제가 발생하였다. @Getter @MappedSuperclass @EntityListeners(AuditingEntityListener.class) public abstract class BaseTimeEntity { @CreatedDate @Column(updatable = false) private LocalDateTime createdDate; @LastModifiedDate private LocalDateTime modifiedDate; } 해결 원인은 JPA Auditing 어노테이션들을 모두 활성화할 수 있게 하..