Error

If you are using MockMvc did you use RestDocumentationRequestBuilders to build the request?

YoonJong 2022. 10. 3. 14:41
728x90

에러내용

java.lang.IllegalArgumentException: urlTemplate not found. If you are using MockMvc did you use RestDocumentationRequestBuilders to build the request?

에러원인

 

REST Doc 관련 테스트 중 requet 요청 에러 발생

해당 perform(get(...) 에서 get 의 import 를 다른 import 로 진행하여 에러발생

 

 

에러조치

import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;

에서 아래 import 로 변경

import static org.springframework.restdocs.mockmvc.RestDocumentationRequestBuilders.get;
728x90