0

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

// "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)"

有人会帮助我吗?,在此先感谢:)

4

1 回答 1

3

正如@IgorRodriguez 所说:

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

为我工作:)

就我而言,它是:

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

于 2015-11-03T15:47:11.773 回答