如何使用jsonpath计算成员数?
2022-08-31 08:33:16
是否可以使用 JsonPath 计算成员数?
使用Spring MVC测试,我正在测试一个控制器,该控制器生成
{"foo": "oof", "bar": "rab"}
跟:
standaloneSetup(new FooController(fooService)).build()
.perform(get("/something").accept(MediaType.APPLICATION_JSON)).andExpect(status().isOk())
.andExpect(jsonPath("$.foo").value("oof"))
.andExpect(jsonPath("$.bar").value("rab"));
我想确保生成的json中没有其他成员。希望通过使用jsonPath来计算它们。可能吗?也欢迎替代解决方案。