REST Assured,如何从JsonPath类静态导入“from”?

时间:2015-11-03 15:25:22

标签: java maven spring-boot rest-assured rest-assured-jsonpath

我正在尝试做类似这样的事情,有点工作不正常,我不知道如何从JsonPath类静态导入“from”,我说应该在这里:

// "from" is statically imported from the JsonPath class List<String> bookTitles = from(response).getList("store.book.findAll { it.price < 10 }.title");

我遇到了这个错误:

"cannot find symbol symbol: method from(java.lang.String)"

有人会帮我吗?,提前谢谢:)

1 个答案:

答案 0 :(得分:3)

正如@IgorRodriguez所说:

  

您必须为。(String)方法添加静态导入   JsonPath类:import static path.to.class.JsonPath.from;

为我工作:)

就我而言:

import static com.jayway.restassured.path.json.JsonPath.from;