gpt4 book ai didi

java - 使用 jackson 将自定义反序列化类添加到已经存在的@JsonDeserialize 注释

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:52:21 27 4
gpt4 key购买 nike

我正在尝试通过编写自定义反序列化程序来反序列化 json。这是我的代码。

public class EventLoginDeserializer extends StdDeserializer<EventLogin> {

public EventLoginDeserializer() {
this(null);
}

public EventLoginDeserializer(Class<EventLogin> event) {
super(event);
}

@Override
public EventLogin deserialize(JsonParser jsonParser, DeserializationContext deserializationContext)
throws IOException, JsonProcessingException {
JsonNode jsonNode = jsonParser.getCodec().readTree(jsonParser);
return EventLogin.builder().displayName(jsonNode.get("display_name"))
.timestamp(DateTime.now()).build();
}

@Override
public Class<EventLogin> handledType() {
return EventLogin.class;
}
}

这是我的主要类(class)的片段。

ObjectMapper mapper = new ObjectMapper();
mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

SimpleModule module = new SimpleModule();
module.addDeserializer(EventLogin.class, new EventLoginDeserializer());
mapper.registerModule(module);

String json = "{\"display_name\": \"Test Deserialization\", \"user_name\": \"test\"}";

EventLogin eventLogin = mapper.readValue(json, EventLogin.class);
System.out.println("readValue :::: " + eventLogin);

我有一个要求,其中我必须在 jar 文件中使用一个已经存在的 @JsonDeserialize 注释模型类,并在上面添加一个反序列化类。我的意思是这里与源文件中已经存在的类相同。

@AutoValue
@JsonDeserialize(builder = AutoValue_EventLogin.Builder.class)
@JsonInclude(JsonInclude.Include.NON_NULL)
public abstract class EventLogin
{
public abstract String displayName();
public abstract DateTime timestamp();

@AutoValue.Builder
public abstract static class Builder implements Login.Builder<Builder> {

public abstract Builder displayName(String displayName);
public abstract Builder emailId(DateTime timestamp);

public abstract EventLogin build();
}
}

问题是因为 @JsonDeserialize 已经存在于 jar 文件中,所以根本没有考虑添加自定义反序列化器。意思是,自定义反序列化器类的重写反序列化方法未被执行。

那么如何克服这个问题呢?

最佳答案

解决方案。 Jackson 允许我们用 mixin 覆盖那些属性指定的值,这样我们就可以创建一个 mixin 类并添加到对象映射器中。

@JsonDeserialize(using = EventLoginDeserializer.class)
public static class EventLoginMixIn{}

然后在我们的主类中

ObjectMapper mapperWithMixin = new ObjectMapper()
.addMixIn(EventLogin.class, EventLoginMixIn.class);

// Deserialize the eventlogin
EventLogin eventLogin = mapperWithMixin.readValue(actualJson, EventLogin.class);

关于java - 使用 jackson 将自定义反序列化类添加到已经存在的@JsonDeserialize 注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39878772/

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