반응형
* 우선은 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에는 그 비밀번호를 입력하면된다.
끄읕.
반응형
'개발 일기라기 보단 메모장 > Java' 카테고리의 다른 글
Certificate doesn't match any of the subject alternative names 에러 어떻게 해야하지.. (0) | 2022.08.01 |
---|---|
Mac os Maven 설치 하는법 까먹지 말자! (0) | 2021.07.27 |
IntelliJ에서 JPA 연동 설정 중 @Entity, @Table 에 빨간줄이 뜬다면.. (0) | 2021.01.04 |
Spring Boot RESTful 404 not found error 왜 자꾸 안되나 했더니.. (5) | 2020.12.04 |
String.valueOf()와 toString()의 차이는 무어엇~? (0) | 2020.10.22 |