728x90
에러 내용
java.lang.ClassCastException: class org.springframework.test.web.client.match.JsonPathRequestMatchers$3 cannot be cast to class org.springframework.test.web.servlet.ResultMatcher (org.springframework.test.web.client.match.JsonPathRequestMatchers$3 and org.springframework.test.web.servlet.ResultMatcher are in unnamed module of loader 'app')
에러원인
import를 다른 패키지로 설정.
위의 josnPath로 import 를 해야한다.
밑 import는 삭제.
에러조치
수동으로 import 해주는 것으로 조치완료
import static org.hamcrest.Matchers.is;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
참고한곳.
https://youngsubee.tistory.com/entry/Spring-boot-JsonPathResultMatchers%EC%97%90%EB%9F%AC
728x90
댓글