gpt4 book ai didi

java - 为什么在没有默认构造函数的情况下将 JSON 编码的字符串转换为 Java 类实例会失败?

转载 作者:行者123 更新时间:2023-11-29 08:29:17 25 4
gpt4 key购买 nike

我有以下代码,将 T 类型的实例编码为 String。然后尝试将编码后的字符串转换回类 T 的实例。

package com.ncr.nep.messaging.notifications.tests;

import java.io.IOException;
import java.io.Serializable;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.vertx.core.json.JsonObject;

class T implements Serializable {
private String channel;

//public T() { }
public T(String channel) {
super();
this.channel = channel;
}
public String getChannel() {
return channel;
}
}
public class Test {
public static void main(String[] args) {
T t = new T("abc");
String enc = JsonObject.mapFrom(t).encode();
System.out.println(enc); //prints: {"channel":"abc"}
//now back from String to T
try {
t = new ObjectMapper().readValue(enc,T.class);
System.out.println(t.getChannel());
} catch (IOException e) {
e.printStackTrace();
}
}
}

readValue 方法调用抛出以下异常:

com.fasterxml.jackson.databind.JsonMappingException: Can not construct instance of com.ncr.nep.messaging.notifications.tests.T: no suitable constructor found, can not deserialize from Object value (missing default constructor or creator, or perhaps need to add/enable type information?)
at [Source: {"channel":"abc"}; line: 1, column: 2]

取消对默认构造函数的注释可以解决问题并生成正确的 T 实例。

我很难想象这个实用程序类 ObjectMapper 的设计者会对他们的客户施加如此重大的限制。
请注意,我可以将 channel 声明为最终 channel ,在这种情况下,要解决此问题,不仅需要添加默认构造函数,而且还需要更改所有成员 - 而不是“最终”...

所以我的问题是:
如果 T 类的设计者特别禁止默认构造函数怎么办。还有什么可以做的吗?是否有注释可以解决问题?

最佳答案

你可以尝试像这样用@JsonCreator注解构造函数,用@JsonProperty注解参数

@JsonCreator
public T(@JsonProperty("channel") String channel) {
super();
this.channel = channel;
}

关于java - 为什么在没有默认构造函数的情况下将 JSON 编码的字符串转换为 Java 类实例会失败?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49647292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com