error message Method org.postgresql.jdbc.PgConnection.createClob() is not yet implemented. 원인 Hibernate Dialect를 명시하지 않을 경우 Hibernate Dialect 를 찾지 못함 -> property를 추가함으로서 해결 (H2는 명시하지 않아도 문제 없음) 해결 application.yml spring: jpa: properties: hibernate: temp: use_jdbc_metadata_defaults: false application.properties spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false 출처 : https://ryu..