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 하지 않으면 적용되지 않음

'SpringBoot > 공부' 카테고리의 다른 글
[SpringBoot] 프로젝트 생성 시 run 오류 (0) | 2023.12.13 |
---|---|
[SpringBoot] Bean 등록 2 가지 (@Component, @Bean) (0) | 2023.12.12 |
@Conditional 어노테이션이란 ? (2) | 2023.11.30 |
[스프링 부트] 의존성 확인하기 (0) | 2023.11.29 |
Spring Boot test 테스트시 Unable to find 오류 (0) | 2023.11.22 |