본문 바로가기
Portpolio/webdev_tip

[spring] jsonpath 사용하기

by Peter Choi 2024. 1. 10.
반응형

JSON 응답값을 필드별로 검증할 수 있는 메소드이다.

$를 기준으로 필드명을 명시한다.

 

package org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
public static <T> ResultMatcher jsonPath(String expression, Matcher<? super T> matcher) {
   return new JsonPathResultMatchers(expression).value(matcher);
}

 

 

반응형

댓글