如何使用Java类和lombok的生成器创建以下json?
我使用了一些json到pojo工具,并创建了2个类:Entry.java
和Testplan.java
,添加了将String
转换为json的方法,并设法获得了一个json对象:{{1 }}
我不知道如何创建一个看起来像这样的东西:
{"suite_id":99,"name":"Some random name"}
Testplan.java
{
"name": "System test",
"entries": [
{
"suite_id": 1,
"name": "Custom run name"
},
{
"suite_id": 1,
"include_all": false,
"case_ids": [
1,
2,
3,
5
]
}
]
}
Entry.java
@Data
@Builder
public class Testplan {
@JsonProperty("name")
public String name;
@JsonProperty("entries")
public List<Entry> entries = null;
}
我使用以下方法将String转换为json:
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@JsonInclude(JsonInclude.Include.NON_NULL)
public class Entry {
@JsonProperty("suite_id")
public Integer suiteId;
@JsonProperty("name")
public String name;
@JsonProperty("include_all")
public Boolean includeAll;
@JsonProperty("case_ids")
public List<Integer> caseIds = null;
}
这是我开始创建对象并陷入困境的方式:
public <U> String toJson(U request) throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper()
.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
return mapper.writeValueAsString(request);
}
要查看发生了什么,我添加了以下内容:
public static Entry getRequestTemplate() {
Entry entry = new Entry();
entry.setName("Here's some name");
entry.setSuiteId(16);
return entry;
}
我希望必须将这两个类结合起来并创建 @Test
public void showJson() throws JsonProcessingException {
String json = toJson(getRequestTemplate());
System.out.println(json);
}
的列表,但无法将其包围。
答案 0 :(得分:0)
这有效:
Testplan
的新方法: public Testplan kek2() {
Testplan testplan = Testplan.builder()
.name("System test")
.entries(Lists.newArrayList(Entry.builder()
.name("Custom run name")
.suiteId(1)
.includeAll(false)
.caseIds(new ArrayList<>(Arrays.asList(1, 2, 3, 4, 5)))
.build()))
.build();
System.out.println(testplan);
return testplan;
}
protected <U> String toJson(U request) throws JsonProcessingException {
ObjectMapper mapper = new ObjectMapper();
return mapper.writeValueAsString(request);
}