SpringBoot Project 1. build.gradle runtimeOnly 'org.postgresql:postgresql' 2. application.yml spring: # Postgres Database datasource: url: jdbc:postgresql://localhost:5432/devplan username: plan password: plan driver-class-name: org.postgresql.Driver # JPA jpa: hibernate: ddl-auto: create # 자동으로 테이블 생성 (drop -> create) properties: hibernate: format_sql: true Mac 터미널로 Postgresql 설치 1) 터미널에서 postg..
Read more
PostgreSQL