build.gradle

image.png

Pasted Graphic 12.png

jdbc 빈은 기본적으로 어떤 것들이 추가되는지 확인하기 위해 starter-web을 제거하고 rebuild

dependencies {
    implementation 'org.springframework.boot:spring-boot-starter-jdbc'
    runtimeOnly 'org.hsqldb:hsqldb'
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
    testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}

로그

출력된 로그

before, after 순서

image.png