반응형
1. 문제
JUnit의 MockMvc를 사용해 RestController를 test 할 때 아래와 같은 에러가 발생할 수 있다.
2. 원인
build dependency에 'spring-boot-starter-web'을 포함시키지 않아서 에러가 발생했다.
3. 해결
아래와 같이 build.gradle에 dependency를 추가하면 해결된다.
추천서적
파트너스 활동을 통해 일정액의 수수료를 제공받을 수 있음
반응형
'ERROR' 카테고리의 다른 글
[ERROR] MockMvc org.springframework.http.converter.HttpMessageNotReadableException (0) | 2020.09.11 |
---|---|
[ERROR] MockMvc NullPointerException Spring Boot (1) | 2020.09.11 |
[ERROR] Intellij create method shortcut not working (0) | 2020.09.11 |
[ERROR] import org.junit cannot be resolved (0) | 2020.09.11 |
[ERROR] A bean with that name has already been defined and overriding is disabled. (0) | 2020.09.11 |