使用类名作为 JSON Jackson 序列化的根键
2022-09-01 08:03:02
假设我有一个 pojo:
import org.codehaus.jackson.map.*;
public class MyPojo {
int id;
public int getId()
{ return this.id; }
public void setId(int id)
{ this.id = id; }
public static void main(String[] args) throws Exception {
MyPojo mp = new MyPojo();
mp.setId(4);
ObjectMapper mapper = new ObjectMapper();
mapper.configure(SerializationConfig.Feature.WRAP_ROOT_VALUE, true);
System.out.println(mapper.getSerializationConfig().isEnabled(SerializationConfig.Feature.WRAP_ROOT_VALUE));
System.out.println(mapper.writeValueAsString(mp));
}
}
当我使用 Jackson ObjectMapper 进行序列化时,我只能得到
true
{"id":4}
但我想要
true
{"MyPojo":{"id":4}}
我到处搜索,杰克逊的文档真的很没有组织,而且大多已经过时了。