본문 바로가기

개발 일기라기 보단 메모장/Java

[spring boot] 스프링부트에 postgreSQL 연동 설정.

반응형

* 우선은 postgreSQL이 설치되어 있어야 한다..

 

 

저는 spring boot로 프로젝트를 만들었기에 처음에 프로젝트를 만들면서 postgreSQL 관련 dependency가 미리 추가되어 있었지만

혹시나 추가되어 있지 않은 분들이라면 아래 소스가 pom.xml에 추가가 되어 있어야 한다.

 

 

[pom.xml]

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <scope>runtime</scope>
        </dependency>

 

대략 pom.xml 위치는 이정도??

dependency는  dependencies 사이 아무데나 위치하면 된다.

 

 

 

 

그리고 나서 application.properties 파일에 내용을 추가해줘야 하는데, 

혹시나 해당 파일이 없다면 파일을 생성후 내용을 추가해주면 된다.

 

 

[application.properties]

# application.properties
spring.datasource.hikari.maximum-pool-size=4

spring.datasource.url=jdbc:postgresql://localhost:5432/postgres
spring.datasource.username=name
spring.datasource.password=pass

 

새로 파일을 만들어야 하는 경우에는 이 위치에다가 만들어야 합니다.

src > resources 

postgreSQL의 기본 포트는 5432가 기본 포트인것 같은데, 혹시나 다르게 설치되어 있을 수 있으니 확인해보아야 한다.

그리고 username에는 postgreSQL에서 만든 이름을 password에는 그 비밀번호를 입력하면된다.

 

 

끄읕.

 

반응형