[JPA 17] 공통 컬럼 관리 - @MappedSuperClass
@MappedSuperClass@MappedSuperClasspublic abstract class CommonEntity { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private LocalDateTime createdAt; private LocalDateTime updatedAt;}id, 등록일, 수정일, 등록한 사람, 수정한 사람 등 많은 Entity에서 공통으로 사용하는 컬럼을 모아놓은 클래스@MappedSuperClass 클래스를 @Entity 클래스가 상속 받으면 테이블에 컬럼이 추가된다JPA의 @Entity 클래스는 @Entity 클래스와 @MappedSuperClass 클래스..