❗해결 방법
DB가 연결되지 않은 상태로 서버를 실행하면 발생하는 오류 중 하나이다
당장 DB 서버가 구축되지 않았다면 h2를 연결해주면 해결된다!
spring:
h2:
console:
enabled: true
path: /h2-console
datasource:
driver-class-name: org.h2.Driver
url: jdbc:h2:mem:testdb
username: sa
password:
728x90
반응형
'🔻Back-End > Spring' 카테고리의 다른 글
[Spring error] @Value Cannot find method 'value' (0) | 2022.12.09 |
---|---|
[Spring error] Failed to start bean 'documentationPluginsBootstrapper'; nested exception is java.lang.NullPointerException (0) | 2022.12.03 |
[Spring] JPA와 Pageable (0) | 2022.11.19 |
[Spring error] Cannot construct instance of `` (0) | 2022.11.11 |
[Spring error] ./gradlew: Permission denied (0) | 2022.11.10 |