JsonPath는? XML 진영에 node를 컨트롤하기 위한 XPath가 있다. Json 진영에는 비슷한 개념의 json-path가 있다. json node들에 대한 컨트롤이 가능한 라이브러리이다. JsonPath 기초 라이브러리 import com.jayway.jsonpath json-path 2.7.0 API Class Method Desc JsonPath compile(...) JsonPath를 생성하는 static 메서드 parse(...) DocumentContext를 생성하는 static 메서드 read(...) 내부적으로 parse()를 호출하는 메서드 DocumentContext - ReadContext와 WriteContext를 상속받은 인터페이스 JsonContext가 구현체이다. Js..