프로젝트의 application.properties에 아래 내용 작성해서 사용하면 된다.
spring.profiles.active=postgresql
spring.datasource.url=jdbc:postgresql://localhost:5432/test
spring.datasource.username=postgres
spring.datasource.password=******
spring.datasource.driver-class-name=org.postgresql.Driver
# 추가로 hibernate 불필요한 metadata 사용안하는 옵션 ( 정확한지는 모르겠다. 추후에 자세히 정리 )
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false
'JAVA > SpringBoot' 카테고리의 다른 글
# Java - ScheduledExecutorService 와 Springboot 의 @Scheduled 예제 (0) | 2020.05.08 |
---|