implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'io.hypersistence:hypersistence-utils-hibernate-5:3.1.1' 의존성 추가 실행할 때 hibernate 버전 보고, https://github.com/vladmihalcea/hypersistence-utils 여기에서 맞는 hypersistence-utils를 찾았다. @Type(type="json") @Column(columnDefinition = "json") private Profile profile; json을 필드에 적용했다. @TypeDef(name = "json", typeClass = JsonType..