Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- database
- 자바스크립트
- BOJ
- PYTHON
- mysql
- 알고리즘
- sql
- mybatis
- 스프링
- 데이터베이스
- javascript
- 오라클
- 파이썬
- db
- Git
- 링크
- 웹프로그래밍
- rdbms
- 에러
- TIL
- jQuery
- 자바
- Oracle
- 백준
- spring
- flask
- eclipse
- java
- 플라스크
- 이클립스
Archives
- Today
- Total
기록과 정리의 공간
[Spring] Class<SpringJUnit4ClassRunner> cannot be resolved to a type / ContextConfiguration cannot be resolved to a type 에러 본문
라이브러리&프레임워크/Spring
[Spring] Class<SpringJUnit4ClassRunner> cannot be resolved to a type / ContextConfiguration cannot be resolved to a type 에러
딸기맛도나쓰 2020. 12. 13. 01:48- Spring을 공부하며 간단한 예제 작성 중, @RunWith 어노테이션의 인자값으로 준 SpringJUnit4ClassRunner.class에 Class<SpringJUnit4ClassRunner> cannot be resolved to a type 에러가 가 발생했다.
- 마찬가지로 @ContextConfiguration 어노테이션을 사용하니 ContextConfiguration cannot be resolved to a type에러가 발생했다.
해결 방법
- pom.xml에서 <scope> 부분을 주석 처리해주면 된다.
'라이브러리&프레임워크 > Spring' 카테고리의 다른 글
Comments