我有一个嵌套的JSON响应。 JsonResponse Screenshot
我想从列表中的第0个位置获取字典,然后从中获取特定元素。
对于例如作为响应,{0}和{1},我希望得到完整的{0}。然后从{0},我想提取" Id"只有价值。
我不想每次都使用 JsonPath.read(JsonResponse String,JSON Path)。所以寻找一些简单而又更好的选择。
如何将JSON响应转换为Java List。以下是回复。
Response resp = given().header("Authorization", "Bearer "+"dwded").
accept(ContentType.JSON).
when().
get("https://example.com");
return resp;
答案 0 :(得分:0)
答案 1 :(得分:0)
在招摇的编辑宠物示例中。
responses:
200:
description: "successful operation"
schema:
type: "array"
items:
$ref: "#/definitions/Pet"
从
生成模型 Pet:
type: "object"
properties:
name:
type: "string"
example: "doggie"
这生成了一个java类
public class Pet {
@JsonProperty("name")
private String name = null;
api显示一个REST,它返回一个可以显示为json对象数组的实体
ResponseEntity<List<Pet>> findPetsByStatus( @NotNull@ApiParam(value = "Status values that need to be considered for filter", required = true, allowableValues = "available, pending, sold") @RequestParam(value = "status", required = true) List<String> status);