@JsonPropertyOrder不使用jackson-module-jsonSchema

时间:2014-11-12 10:12:39

标签: java json jackson jsonschema jackson-modules

我正在使用Jackson模块的最新分支 - jackson-module-jsonSchema,即2.4.4-Snapshot。

我正在尝试使用@JsonPropertyOrder注释来维护POJO属性的顺序,但它似乎不尊重注释。

我的样本POJO如下 -

import com.fasterxml.jackson.annotation.JsonPropertyOrder;

@JsonPropertyOrder({"a", "b"})
class Pojo {
    private String a;
    private String b;

    public Pojo(final String a, final String b) {
        this.a = a;
        this.b = b;
    }

    public void setA(final String a) {
        this.a = a;
    }

    public void setB(final String b) {
        this.b = b;
    }

    public String getA() {
        return this.a;
    }

    public String getB() {
        return this.b;
    }
}

杰克逊代码如下 -

import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.module.jsonSchema.JsonSchema;
import com.fasterxml.jackson.module.jsonSchema.factories.SchemaFactoryWrapper;

public class Test {

    public static void main(String[] args) throws JsonProcessingException {
        // TODO Auto-generated method stub
        final ObjectMapper mapper = new ObjectMapper();
        final SchemaFactoryWrapper visitor = new SchemaFactoryWrapper();
        mapper.acceptJsonFormatVisitor(mapper.constructType(Pojo.class), visitor);
        final JsonSchema jsonSchema = visitor.finalSchema();            
        System.out.println(mapper.writeValueAsString(jsonSchema));
    }

}

Json输出如下 -

{
    "type": "object",
    "id": "urn:jsonschema:Pojo",
    "properties": {
        "b": {
            "type": "string"
        },
        "a": {
            "type": "string"
        }
    }
}

有人可能会建议我做错了什么,或者我们是否需要在jackson上打开一个问题,因为我发现这个问题已经在2.3.2中被关闭了(https://github.com/FasterXML/jackson-dataformat-xml/issues/91)?

1 个答案:

答案 0 :(得分:0)

使用 @JsonPropertyOrder(字母=真) 这将按字母顺序排序所有属性 适用于Jackson 1.9.13