5
用jsonpath计数成员?
使用JsonPath是否可以计算成员数? 使用Spring MVC Test我正在测试生成的控制器 {"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计数它们。可能吗?也欢迎其他解决方案。