spring boot 처음실행 시 다음과 같은 에러가 났다.
Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.
application.properties 에 JDBC url 을 추가해준다.
[mysql]
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.url=jdbc:mysql://localhost:3306/[DB스키마명]?autoReconnect=true
spring.datasource.username=[DB접속Id]
spring.datasource.password=[DB접속Password]
[postgres]
spring.datasource.driverClassName=org.postgresql.Driver
spring.datasource.url=jdbc:postgresql://localhost:5432/[DB스키마명]?characterEncoding=UTF-8&serverTimezone=UTC
spring.datasource.username=[DB접속Id]
spring.datasource.password=[DB접속Password]
반응형
'도구 > Intellij' 카테고리의 다른 글
[Intellij] Intellij에서 jupyter notebook 연결 (0) | 2021.10.20 |
---|---|
[Intellij] python interpreter configure 설정하기 (자바에서 파이썬 실행하기) (0) | 2021.10.20 |
[intellij] db 연결 - intellij에 database연결해서 사용하기 (0) | 2021.04.27 |
Intellij 프로젝트 생성 (0) | 2021.04.14 |
intellij 단축키 (0) | 2021.04.02 |