순수 JPA로 하는 법 @MappedSuperclass 를 선언한 속성값 선언용 Class를 만들어 Entity에서 상속받게 하라. MappedSuperclass 생성, 변수 선언 @MappedSuperclass //실제 상속관계는 아니고 그냥 값만 내려서 사용할 수 있게 해주는 class //이걸 선언해야 이후 상속한 Entity Table 생성시 변수값이 추가된다. public class JpaBaseEntity { @Column(updatable = false) //DB의 값이 변경되지 않게 고정해주는 어노테이션 private LocalDateTime createdDate; private LocalDateTime updatedDate; @PrePersist //persist (등록) 하기전에 발동 ..