[Spring] SpringBoot에 PostgreSQL 연결하기

DEINGVELOP·2022년 10월 1일
0
post-custom-banner

1. Build.gradle에 의존성 추가하기

dependencies{
	// PostgreSQL 연결 - https://mvnrepository.com/artifact/org.postgresql/postgresql
	implementation group: 'org.postgresql', name: 'postgresql', version: '42.5.0'
	runtimeOnly 'org.postgresql:postgresql'
}

2. application.properties에 db 관련 설정 추가하기

# 연결
spring.datasource.url=DB주소
spring.datasource.username=계정 username
spring.datasource.password=비밀번호

# SQL DB
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.logging.level.org.hibernate.SQL=debug
spring.jpa.show-sql=true

# Postgres
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
post-custom-banner

0개의 댓글