JPA와 postgreSQL 연동 방법 라이브러리 설치 JPA와 postGreSQL 라이브러리를 설치한다. implementation 'org.springframework.boot:spring-boot-starter-data-jpa' implementation 'org.postgresql:postgresql' application.yml 설정 spring: datasource: url: jdbc:postgresql://localhost:5432/ username: password: driver-class-name: org.postgresql.Driver jpa: show-sql: true database: postgresql hibernate: ddl-auto: update 이렇게 설정을 마치면 사용이 ..