在Spring中编写JSON解串器或对其进行扩展的正确方法

我正在尝试在Spring中编写自定义JSON反序列化器。我想对大部分字段使用默认的序列化程序,而对少数属性使用自定义的反序列化程序。可能吗?我正在尝试这种方式,因为大多数属性都是值,因此对于这些,我可以让Jackson使用默认的反序列化器;但是很少有属性是引用,因此在自定义反序列化器中,我必须查询数据库以获取引用名称,并从数据库中获取引用值。

如果需要,我将显示一些代码。

回答:

我进行了很多搜索,到目前为止,找到最好的方法是在这篇文章上:

Class to serialize

package net.sghill.example;

import net.sghill.example.UserDeserializer

import net.sghill.example.UserSerializer

import org.codehaus.jackson.map.annotate.JsonDeserialize;

import org.codehaus.jackson.map.annotate.JsonSerialize;

@JsonDeserialize(using = UserDeserializer.class)

public class User {

private ObjectId id;

private String username;

private String password;

public User(ObjectId id, String username, String password) {

this.id = id;

this.username = username;

this.password = password;

}

public ObjectId getId() { return id; }

public String getUsername() { return username; }

public String getPassword() { return password; }

}

Deserializer class

package net.sghill.example;

import net.sghill.example.User;

import org.codehaus.jackson.JsonNode;

import org.codehaus.jackson.JsonParser;

import org.codehaus.jackson.ObjectCodec;

import org.codehaus.jackson.map.DeserializationContext;

import org.codehaus.jackson.map.JsonDeserializer;

import java.io.IOException;

public class UserDeserializer extends JsonDeserializer<User> {

@Override

public User deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException {

ObjectCodec oc = jsonParser.getCodec();

JsonNode node = oc.readTree(jsonParser);

return new User(null, node.get("username").getTextValue(), node.get("password").getTextValue());

}

}

以上是 在Spring中编写JSON解串器或对其进行扩展的正确方法 的全部内容, 来源链接: utcz.com/qa/408705.html

回到顶部