Jackson:反序列化为每个值类型正确的 Map<String, Object>
Jackson: Deserialize to a Map<String, Object> with correct type for each value
我有一个 class 如下所示
public class MyClass {
private String val1;
private String val2;
private Map<String,Object> context;
// Appropriate accessors removed for brevity.
...
}
我希望能够与 Jackson 一起往返于物体和 JSON 之间。我可以很好地序列化上面的对象并收到以下输出:
{
"val1": "foo",
"val2": "bar",
"context": {
"key1": "enumValue1",
"key2": "stringValue1",
"key3": 3.0
}
}
我 运行 遇到的问题是,由于序列化映射中的值没有任何类型信息,因此它们未正确反序列化。例如,在上面的示例中,enumValue1 应反序列化为枚举值,但反序列化为字符串。我已经看到基于各种事物的类型的示例,但在我的场景中,我不知道类型是什么(它们将是我事先不知道的用户生成的对象)所以我需要能够用键值对序列化类型信息。我如何使用 Jackson 完成此操作?
郑重声明,我使用的是 Jackson 2.4.2 版。我用来测试往返的代码如下:
@Test
@SuppressWarnings("unchecked")
public void testJsonSerialization() throws Exception {
// Get test object to serialize
T serializationValue = getSerializationValue();
// Serialize test object
String json = mapper.writeValueAsString(serializationValue);
// Test that object was serialized as expected
assertJson(json);
// Deserialize to complete round trip
T roundTrip = (T) mapper.readValue(json, serializationValue.getClass());
// Validate that the deserialized object matches the original one
assertObject(roundTrip);
}
由于这是一个基于 Spring 的项目,映射器的创建如下:
@Configuration
public static class SerializationConfiguration {
@Bean
public ObjectMapper mapper() {
Map<Class<?>, Class<?>> mixins = new HashMap<Class<?>, Class<?>>();
// Add unrelated MixIns
..
return new Jackson2ObjectMapperBuilder()
.featuresToDisable(SerializationFeature.WRITE_DATE_KEYS_AS_TIMESTAMPS)
.dateFormat(new ISO8601DateFormatWithMilliSeconds())
.mixIns(mixins)
.build();
}
}
我认为实现您想要的最简单方法是使用:
ObjectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
这将在序列化的 json 中添加类型信息。
这是一个 运行 示例,您需要适应 Spring:
public class Main {
public enum MyEnum {
enumValue1
}
public static void main(String[] args) throws IOException {
ObjectMapper mapper = new ObjectMapper();
MyClass obj = new MyClass();
obj.setContext(new HashMap<String, Object>());
obj.setVal1("foo");
obj.setVal2("var");
obj.getContext().put("key1", "stringValue1");
obj.getContext().put("key2", MyEnum.enumValue1);
obj.getContext().put("key3", 3.0);
mapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
String json = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(obj);
System.out.println(json);
MyClass readValue = mapper.readValue(json, MyClass.class);
//Check the enum value was correctly deserialized
Assert.assertEquals(readValue.getContext().get("key2"), MyEnum.enumValue1);
}
}
该对象将被序列化为类似于以下内容的内容:
[ "so_27871226.MyClass", {
"val1" : "foo",
"val2" : "var",
"context" : [ "java.util.HashMap", {
"key3" : 3.0,
"key2" : [ "so_27871226.Main$MyEnum", "enumValue1" ],
"key1" : "stringValue1"
} ]
} ]
并且会正确反序列化回来,断言会通过。
顺便说一下,还有更多方法可以做到这一点,请查看 https://github.com/FasterXML/jackson-docs/wiki/JacksonPolymorphicDeserialization 了解更多信息。
希望对您有所帮助。
我有一个 class 如下所示
public class MyClass {
private String val1;
private String val2;
private Map<String,Object> context;
// Appropriate accessors removed for brevity.
...
}
我希望能够与 Jackson 一起往返于物体和 JSON 之间。我可以很好地序列化上面的对象并收到以下输出:
{
"val1": "foo",
"val2": "bar",
"context": {
"key1": "enumValue1",
"key2": "stringValue1",
"key3": 3.0
}
}
我 运行 遇到的问题是,由于序列化映射中的值没有任何类型信息,因此它们未正确反序列化。例如,在上面的示例中,enumValue1 应反序列化为枚举值,但反序列化为字符串。我已经看到基于各种事物的类型的示例,但在我的场景中,我不知道类型是什么(它们将是我事先不知道的用户生成的对象)所以我需要能够用键值对序列化类型信息。我如何使用 Jackson 完成此操作?
郑重声明,我使用的是 Jackson 2.4.2 版。我用来测试往返的代码如下:
@Test
@SuppressWarnings("unchecked")
public void testJsonSerialization() throws Exception {
// Get test object to serialize
T serializationValue = getSerializationValue();
// Serialize test object
String json = mapper.writeValueAsString(serializationValue);
// Test that object was serialized as expected
assertJson(json);
// Deserialize to complete round trip
T roundTrip = (T) mapper.readValue(json, serializationValue.getClass());
// Validate that the deserialized object matches the original one
assertObject(roundTrip);
}
由于这是一个基于 Spring 的项目,映射器的创建如下:
@Configuration
public static class SerializationConfiguration {
@Bean
public ObjectMapper mapper() {
Map<Class<?>, Class<?>> mixins = new HashMap<Class<?>, Class<?>>();
// Add unrelated MixIns
..
return new Jackson2ObjectMapperBuilder()
.featuresToDisable(SerializationFeature.WRITE_DATE_KEYS_AS_TIMESTAMPS)
.dateFormat(new ISO8601DateFormatWithMilliSeconds())
.mixIns(mixins)
.build();
}
}
我认为实现您想要的最简单方法是使用:
ObjectMapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
这将在序列化的 json 中添加类型信息。
这是一个 运行 示例,您需要适应 Spring:
public class Main {
public enum MyEnum {
enumValue1
}
public static void main(String[] args) throws IOException {
ObjectMapper mapper = new ObjectMapper();
MyClass obj = new MyClass();
obj.setContext(new HashMap<String, Object>());
obj.setVal1("foo");
obj.setVal2("var");
obj.getContext().put("key1", "stringValue1");
obj.getContext().put("key2", MyEnum.enumValue1);
obj.getContext().put("key3", 3.0);
mapper.enableDefaultTyping(ObjectMapper.DefaultTyping.NON_FINAL);
String json = mapper.writerWithDefaultPrettyPrinter().writeValueAsString(obj);
System.out.println(json);
MyClass readValue = mapper.readValue(json, MyClass.class);
//Check the enum value was correctly deserialized
Assert.assertEquals(readValue.getContext().get("key2"), MyEnum.enumValue1);
}
}
该对象将被序列化为类似于以下内容的内容:
[ "so_27871226.MyClass", {
"val1" : "foo",
"val2" : "var",
"context" : [ "java.util.HashMap", {
"key3" : 3.0,
"key2" : [ "so_27871226.Main$MyEnum", "enumValue1" ],
"key1" : "stringValue1"
} ]
} ]
并且会正确反序列化回来,断言会通过。
顺便说一下,还有更多方法可以做到这一点,请查看 https://github.com/FasterXML/jackson-docs/wiki/JacksonPolymorphicDeserialization 了解更多信息。
希望对您有所帮助。