[junit] 오류
java.lang.IlleagalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
[해결]
즉 원본소스는 src/main/java/com/example/ 밑에 있는데
테스트 소스가 src/test/com/exam/ 밑에 있어서 맞지 않는다면 해당 오류가 나더라.
테스트 소스를 원본소스 패키지와 맞춰서 밑에 두면 해결
my-test-project
+--pom.xml
+--src
+--main
+--com
+--example
+-- 원본소스.java
+--test
+--com
+--example
+--test
+-- 테스트소스.java
'DEV > Spring' 카테고리의 다른 글
스프링 세팅 (0) | 2020.11.16 |
---|---|
[오류해결] cannot change version of project facet dynamic web module to 3.1 (1) | 2020.08.06 |
[Spring] 스프링 Interceptor 설정 (0) | 2020.04.12 |
[SpringBoot] 스프링 시큐리티, OAuth2로 구글로그인 구현 예제 (0) | 2020.02.26 |
[SpringBoot] 어노테이션 정리(롬복,테스트,스프링) (0) | 2020.02.24 |