-
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration개발 기록 2023. 3. 27. 16:05728x90
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
테스트 코드를 실행시키다 만난 오류이다.
원인
@SpringBootApplication 이 붙어있는 메인 클래스와 @SpringBootTest가 붙어있는 테스트 코드의 패키지명이 달라서 생긴 오류였다. (패키지명 수정중이었다.)
해결
패키지명을 일치시킨다.
728x90반응형'개발 기록' 카테고리의 다른 글
MSA - Spring Cloud Eureka server (0) 2023.04.09 Spring Boot[2.x.x] is not compatible with this Spring Cloud release train (0) 2023.04.03 DB 이중화하기 with Spring AOP (0) 2023.03.19 Spring AOP에서 만난 예상치 못한 오류 --enable-preview (0) 2023.03.15 r2dbc-pool. R2dbcNonTransientResourceException: Connection validation failed (0) 2023.03.14