Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- CloutNative
- K8S
- wappalyzer
- MySQL
- 이클립스
- windows10
- Postman
- SQL
- offset
- frontend
- MySQL시작하기
- VUE
- DB생성
- Lombok
- MYSQL에러
- restful api
- Java
- spring
- pagination
- intellij
- springMVC
- NullPointerException
- minikube
- 스프링에러
- gradle
- SpringBoot
- 우분투에war배포
- Seek_Keyset
- appleM1
- String
Archives
- Today
- Total
미운 오리 새끼의 우아한 개발자되기
[Spring 에러]Class<SpringJUnit4ClassRunner> cannot be resolved to a type 본문
Errors!!!/Spring & Spring Boot Error
[Spring 에러]Class<SpringJUnit4ClassRunner> cannot be resolved to a type
Serina_Heo 2020. 8. 28. 13:55
상세 에러 메세지: Multiple markers at this line
- SpringJUnit4ClassRunner cannot be resolved to a type
- Class<SpringJUnit4ClassRunner> cannot be resolved to
a type
처음에는 pom.xml에 dependency가 제대로 추가 되지않아서 그런건가 했으나, pom 파일은 문제없었다.
원인은 알수 없지만...
수동으로
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
를 넣어주니 해결되었다.
스프링은 이렇게 자동 import를 해도 안먹히는 경우가 종종 있어 이렇게 수동으로 import를 해주어야 하는 경우가 있다.