jpa @MappedSuperclass1 JPA - @MappedSuperclass @MappedSuperclass 코드예제 @Getter @MappedSuperclass @EntityListeners(AuditingEntityListener.class) public abstract class BaseTimeEntity{ @CreatedDate // Entity가 생성되어 저장될 때 시간이 자동 저장됩니다. private LocalDateTime createDate; @LastModifiedDate // 조회한 Entity 값을 변경할 때 시간이 자동 저장됩니다. private LocalDateTime modifiedDate; } @Entity public class Member extends BaseEntity{ ... } // JPA Auditing 활성화 @EnableJpaAudi.. 2022. 4. 10. 이전 1 다음