Notice
Recent Posts
Recent Comments
Link
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
Archives
Today
Total
관리 메뉴

희디비

[Junit] java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test 본문

Clone Coding

[Junit] java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test

희디비 2023. 10. 14. 21:26

스프링 부트와 AWS로 혼자 구현하는 웹서비스

스프링부트에 대한 경험이 없어서 위 책을 실습하던중 에러가 발생했습니다.

 java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration

해석하면 스프링부트설정 에노테이션을 찾을수 없다는 내용이였습니다.

결론은 패키지 이름을 오타가 나서 작동 하지 않았던것 이였는데 어떻게 설정 파일을 찾는지 궁금 하여 찾아 보았습니다.

 

테스트 패키지
com.bookstore.www

테스트 클래스는 자신의 윗패키지 순서대로 설정파일을 찾습니다.

1. com.bookstore.www

2. com.bookstore

3. com 

 

해결방법은 설정패키지를 테스트 패키지보다 상위패키지에 두거나 같은 패키지에 둔다면 해결됩니다.