0. 환경- DB : Postgres- DBeaver 을 사용하여 확인- Spring boot 환경에서 Jpa를 이용하여 테이블 생성1. 연동하기- src > main > resources > application.yml 파일spring: datasource: driver-class-name: org.postgresql.Driver url: jdbc:postgresql://localhost:포트번호/스키마이름 platform: postgres username: 지정한이름 (미설정시 기본) password: 지정한비번 (미설정시 기본) jpa: hibernate: ddl-auto: create # 처음에 create로 작성하시고 이후에는 none show-..