杰克逊2支持版本控制

时间:2014-01-17 19:07:00

标签: jackson

有人知道Jackson2是否支持版本控制;类似于GSON的@Since@Until注释?

2 个答案:

答案 0 :(得分:9)

Jackson Model Versioning Module添加版本支持,满足GSON的@Since和@Until超集。

假设您有一个带GSON注释的模型:

public class Car {
    public String model;
    public int year;
    @Until(1) public String new;
    @Since(2) public boolean used;
}

使用该模块,您可以将其转换为以下Jackson类级注释...

@JsonVersionedModel(currentVersion = '3', toCurrentConverterClass = ToCurrentCarConverter)
public class Car {
    public String model;
    public int year;
    public boolean used;
}

...并编写一个当前版本的转换器:

public class ToCurrentCarConverter implements VersionedModelConverter {
    @Override
    public ObjectNode convert(ObjectNode modelData, String modelVersion,
                              String targetModelVersion, JsonNodeFactory nodeFactory) {

        // model version is an int
        int version = Integer.parse(modelVersion);

        // version 1 had a 'new' text field instead of a boolean 'used' field
        if(version <= 1)
            modelData.put("used", !Boolean.parseBoolean(modelData.remove("new").asText()));
    }
}

现在只需使用模块配置Jackson ObjectMapper并测试它。

ObjectMapper mapper = new ObjectMapper().registerModule(new VersioningModule());

// version 1 JSON -> POJO
Car hondaCivic = mapper.readValue(
    "{\"model\": \"honda:civic\", \"year\": 2016, \"new\": \"true\", \"modelVersion\": \"1\"}",
    Car.class
)

// POJO -> version 2 JSON
System.out.println(mapper.writeValueAsString(hondaCivic))
// prints '{"model": "honda:civic", "year": 2016, "used": false, "modelVersion": "2"}'

免责声明:我是本单元的作者。有关其他功能的更多示例,请参阅GitHub项目页面。我还写了Spring MVC ResponseBodyAdvise来使用该模块。

答案 1 :(得分:2)

不直接。您可以使用@JsonView或JSON过滤器功能来实现类似的包含/排除。