[Spring Boot] JPA Auditing으로 BaseTimeEntity 구현
01_BaseTimeEntity📍 BaseTimeEntity모든 엔티티가 공통으로 가져야 할 시간 관련 필드를 모아둔 부모 클래스자식 엔티티는 BaseTimeEntity를 상속받기만 하면 createdAt, updatedAt 필드를 자동으로 가지게 됨import jakarta.persistence.EntityListeners;import jakarta.persistence.MappedSuperclass;import lombok.Getter;import org.springframework.data.annotation.CreatedDate;import org.springframework.data.annotation.LastModifiedDate;import org.springframework.data.jp..