是否可以使用SerializationFeature.WRAP_ROOT_VALUE
将ObjectMapper
的配置作为注释添加到根元素上?
例如我有:
@JsonRootName(value = "user")
public class UserWithRoot {
public int id;
public String name;
}
使用ObjectMapper:
@Test
public void whenSerializingUsingJsonRootName_thenCorrect()
throws JsonProcessingException {
UserWithRoot user = new User(1, "John");
ObjectMapper mapper = new ObjectMapper();
mapper.enable(SerializationFeature.WRAP_ROOT_VALUE);
String result = mapper.writeValueAsString(user);
assertThat(result, containsString("John"));
assertThat(result, containsString("user"));
}
结果:
{
"user":{
"id":1,
"name":"John"
}
}
有没有办法让这个SerializationFeature
作为注释,而不是objectMapper
上的配置?
使用依赖:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.7.2</version>
</dependency>
答案 0 :(得分:17)
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
public class Test2 {
public static void main(String[] args) throws JsonProcessingException {
UserWithRoot user = new UserWithRoot(1, "John");
ObjectMapper objectMapper = new ObjectMapper();
String userJson = objectMapper.writerWithDefaultPrettyPrinter().writeValueAsString(user);
System.out.println(userJson);
}
@JsonTypeName(value = "user")
@JsonTypeInfo(include = JsonTypeInfo.As.WRAPPER_OBJECT, use = JsonTypeInfo.Id.NAME)
private static class UserWithRoot {
public int id;
public String name;
}
}
@JsonTypeName
和@JsonTypeInfo
使它成为可能。
结果:
{
"user" : {
"id" : 1,
"name" : "John"
}
}
答案 1 :(得分:0)
我认为这已被要求为:
https://github.com/FasterXML/jackson-databind/issues/1022
因此,如果有人想要挑战并有机会让许多用户感到高兴(这肯定会很好),那么就可以争取:)
除了值得注意的一件小事之外,您可以使用 ObjectWriter
来启用/禁用 SerializationFeature
。
String json = objectMapper.writer()
.with(SerializationFeature.WRAP_ROOT_VALUE)
.writeValueAsString(value);
如果您有时需要使用它,有时则不需要(在初始构建和配置后不应更改ObjectMapper
设置)。