728x90
problem
inMemoryDatabaseShutdownExecutor / dataSource defined
멀티모듈 빌드 과정에서 dataSource 를 찾지 못하는 에러가 나왔다..
solution
검색을 해보니 DB 셋팅을 해주라는 답변들이 나왔다.
#블로그 답변들..
spring.datasource.driverClassName=org.h2.Driver
---
runtimeOnly 'com.h2database:h2'
Boot 모듈에 db 의존성을 추가해주어야 하나라는 생각이 문뜩 들어서 추가해주었다.
dependencies {
implementation(project(":takeItEasy-presentation"))
implementation(project(":takeItEasy-aop"))
#추가
runtimeOnly("org.postgresql:postgresql")
testImplementation("org.springframework.batch:spring-batch-test")
}
빌드 성공 ..끗!
728x90
'일-상 > 오류노트' 카테고리의 다른 글
[오류노트] No qualifying bean of type 'org.springframework.boot.autoconfigure.h2.H2ConsoleProperties' available (2) | 2024.04.20 |
---|---|
[오류노트] Spring Batch [ Could not obtain sequence value ] (0) | 2024.03.30 |
[오류노트] 젠킨스 does not exist , Cannot find symbol method 에러 (0) | 2024.03.25 |
[오류노트] "could not execute statement; SQL [n/a]"인코딩 오류 (0) | 2024.03.20 |
[오류노트] EC2 -> RDS 접속 (0) | 2024.03.19 |