如何创建带有JSON注释的POJO类

时间:2018-08-13 02:01:54

标签: json eclipse jackson pojo fasterxml

我在寻找的代码中看到了类似这样的类,并且想知道如何 它是生成的,看起来像是由插件生成的还是由eclipse本身生成的,我知道eclipse可以为您的向导创建POJO文件,但是如何获得如下所示的结果?

   public class Item implements Serializable{

    private static final long serialVersionUID = 3868244754652312286L;

    @JsonProperty("name")
    private String name;
    @JsonProperty("quantity")
    private String quantity;
    @JsonProperty("price")
    private String price;
    @JsonProperty("tax")
    private String tax;
    @JsonProperty("sku")
    private String sku;
    @JsonProperty("originalPrice")
    private String originalPrice;
    @JsonIgnore
    private HashMap<String, Object> additionalProperties = new HashMap<>();

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

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

0 个答案:

没有答案