dependencies 추가시 필수로 reload 해줘야 적용됨 

dependencies {
    implementation('org.springframework.boot:spring-boot-starter-web')
    implementation('org.springframework:spring-jdbc')
    testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

 

implementation 추가 후 reload 하지 않으면 적용되지 않음

 

+ Recent posts