当前位置: 首页 > 知识库问答 >
问题:

没有单一的字符串构造函数/工厂方法

权胜泫
2023-03-14

[这不是从JSON字符串中不能实例化类型值的重复;没有单字符串构造函数/工厂方法:这是一个简单得多的POJO和JSON。在我的情况下,解决方案也不同。]

我要从中解析和创建POJO的JSON:

{
    "test_mode": true,
    "balance": 1005,
    "batch_id": 99,
    "cost": 1,
    "num_messages": 1,
    "message": {
        "num_parts": 1,
        "sender": "EXAMPL",
        "content": "Some text"
    },
    "receipt_url": "",
    "custom": "",
    "messages": [{
        "id": 1,
        "recipient": 911234567890
    }],
    "status": "success"
}

如果响应碰巧是一个错误,它看起来像:

{
    "errors": [{
        "code": 80,
        "message": "Invalid template"
    }],
    "status": "failure"
}

以下是我定义的POJO:

@Data
@Accessors(chain = true)
public class SmsResponse {

    @JsonProperty(value = "test_mode")
    private boolean testMode;

    private int balance;

    @JsonProperty(value = "batch_id")
    private int batchId;

    private int cost;

    @JsonProperty(value = "num_messages")
    private int numMessages;

    private Message message;

    @JsonProperty(value = "receipt_url")
    private String receiptUrl;

    private String custom;

    private List<SentMessage> messages;

    private String status;

    private List<Error> errors;

    @Data
    @Accessors(chain = true)
    public static class Message {

        @JsonProperty(value = "num_parts")
        private int numParts;

        private String sender;

        private String content;
    }

    @Data
    @Accessors(chain = true)
    public static class SentMessage {

        private int id;

        private long recipient;
    }

    @Data
    @Accessors(chain = true)
    public static class Error {

        private int code;

        private String message;
    }

}

注释@Data(告诉Lombok自动为类生成getter、setter、toString()hashCode()方法)和@Accessors(告诉Lombok以可以链接的方式生成setter)来自Lombok项目。

似乎是一个简单的设置,但每次运行时:

objectMapper.convertValue(response, SmsResponse.class);

我得到错误消息:

Can not instantiate value of type [simple type, class com.example.json.SmsResponse]
from String value ... ; no single-String constructor/factory method

为什么我需要一个用于SmsResponse的单个字符串构造函数,如果需要,我在其中接受哪个字符串?

共有1个答案

方宜
2023-03-14

要使用ObjectMapper解析和映射JSON字符串,您需要使用readValue方法

objectMapper.readValue(response, SmsResponse.class);
 类似资料: