将Json转换为DTO阵列 [英] Converting Json into a DTO array

查看:146
本文介绍了将Json转换为DTO阵列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个有趣的JSON解析问题,至少对我来说是这样,因为我是第一次这样做.我有以下示例JSON,我想将其映射到等效的DTO:

I have an interesting JSON parsing problem, at least to me since I am doing this for the first time. I have the following sample JSON and I want to map it to equivalent DTOs:

{
    "modules":
    [
        {
            "name":"module1",
            "shortId":23425,
            "pmns":
            [
                {
                    "name":"pmn1",
                    "position":1,
                    "pmnType":"D3"
                },
                {
                    "name":"pmn3",
                    "position":3,
                    "pmnType":"R2"
                },
                {
                    "name":"pmn7",
                    "position":5,
                    "pmnType":"S1"
                },
            ]
        },
        {
            "name":"module2",
            "shortId":1572,
            "pmns":
            [
                {
                    "name":"pmn1",
                    "position":3,
                    "pmnType":"D3"
                },
                {
                    "name":"pmn12",
                    "position":35,
                    "pmnType":"R2"
                },
            ]
        }
    ]
}

这是我的ModuleDTO类:

This is my ModuleDTO class:

public class ModuleDTO {

    private String _name;
    private short _shortId;
    private PmnDTO[] _pmns;

    public String getName() {
        return _name;
    }

    public short getShortId() {
        return _shortId;
    }

    public PmnDTO[] getPmns() {
        return _pmns;
    }

    @JsonProperty("name")
    public void setName(String name) {
        this._name = name;
    }

    @JsonProperty("shortId")
    public void setShortId(short shortId) {
        this._shortId = shortId;
    }

    @JsonProperty("pmns")
    public void setPmns(PmnDTO[] pmns) {
        this._pmns = pmns;
    }

}

这里没有复制,但是我的PmnDTO类是相似的,即JSON的pmn对象中每个属性的获取器和设置器.

Not copied here but my PmnDTO class is similar, i.e. getters and setters for each property in the pmn object of JSON.

我编写了以下代码,以尝试将其映射到DTO.我正在使用的库是com.FasterXml.jackson(版本2.3.1)

I wrote the following code to try to map it to DTO. The library I am using is com.FasterXml.jackson (version 2.3.1)

// Got the response, construct a DTOs out of it ...
ObjectMapper mapper = new ObjectMapper();
StringReader reader = new StringReader(response); // Json Response

// Convert the JSON response to appropriate DTO ...
ModuleDTO moduleDto = mapper.readValue(reader, ModuleDTO.class);

很显然,此代码无法正常工作.有人可以告诉我,如果模块"是JSON中的一个数组,并且其内部还包含一个可变大小的数组,那么我该如何将JSON响应映射到我的DTO.

Obviously, this code didn't work. Can someone tell, how can I map the JSON response to my DTOs, given that "modules" is an array in the JSON and it also contains a variable size array within itself.

谢谢.

(* Vipul)();

(*Vipul)() ;

推荐答案

首先,您的JSON无效,因此我怀疑您希望这样做:

First of all your JSON is invalid, so I suspect you want this instead:

{
    "modules": [
        {
            "name": "module1",
            "shortId": 23425,
            "pmns": [
                {
                    "name": "pmn1",
                    "position": 1,
                    "pmnType": "D3"
                },
                {
                    "name": "pmn3",
                    "position": 3,
                    "pmnType": "R2"
                },
                {
                    "name": "pmn7",
                    "position": 5,
                    "pmnType": "S1"
                }
            ]
        },
        {
            "name": "module2",
            "shortId": 1572,
            "pmns": [
                {
                    "name": "pmn1",
                    "position": 3,
                    "pmnType": "D3"
                },
                {
                    "name": "pmn12",
                    "position": 35,
                    "pmnType": "R2"
                }
            ]
        }
    ]
}

然后,您可以在此处中使用从JSON到POJO的在线转换,您将得到以下结果:

Then you can use the online conversion from JSON to POJO here and you'll get the follwing result:

----------------------------------- com.example.Example.java ----- ------------------------------

-----------------------------------com.example.Example.java-----------------------------------

package com.example;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"modules"
})
public class Example {

@JsonProperty("modules")
@Valid
private List<Module> modules = new ArrayList<Module>();
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();

@JsonProperty("modules")
public List<Module> getModules() {
return modules;
}

@JsonProperty("modules")
public void setModules(List<Module> modules) {
this.modules = modules;
}

@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}

@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}

}

----------------------------------- com.example.Module.java ----- ------------------------------

-----------------------------------com.example.Module.java-----------------------------------

package com.example;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Generated;
import javax.validation.Valid;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"name",
"shortId",
"pmns"
})
public class Module {

@JsonProperty("name")
private String name;
@JsonProperty("shortId")
private Integer shortId;
@JsonProperty("pmns")
@Valid
private List<Pmn> pmns = new ArrayList<Pmn>();
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();

@JsonProperty("name")
public String getName() {
return name;
}

@JsonProperty("name")
public void setName(String name) {
this.name = name;
}

@JsonProperty("shortId")
public Integer getShortId() {
return shortId;
}

@JsonProperty("shortId")
public void setShortId(Integer shortId) {
this.shortId = shortId;
}

@JsonProperty("pmns")
public List<Pmn> getPmns() {
return pmns;
}

@JsonProperty("pmns")
public void setPmns(List<Pmn> pmns) {
this.pmns = pmns;
}

@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}

@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}

}

----------------------------------- com.example.Pmn.java ----- ------------------------------

-----------------------------------com.example.Pmn.java-----------------------------------

package com.example;

import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"name",
"position",
"pmnType"
})
public class Pmn {

@JsonProperty("name")
private String name;
@JsonProperty("position")
private Integer position;
@JsonProperty("pmnType")
private String pmnType;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();

@JsonProperty("name")
public String getName() {
return name;
}

@JsonProperty("name")
public void setName(String name) {
this.name = name;
}

@JsonProperty("position")
public Integer getPosition() {
return position;
}

@JsonProperty("position")
public void setPosition(Integer position) {
this.position = position;
}

@JsonProperty("pmnType")
public String getPmnType() {
return pmnType;
}

@JsonProperty("pmnType")
public void setPmnType(String pmnType) {
this.pmnType = pmnType;
}

@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}

@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}

}

这篇关于将Json转换为DTO阵列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆