返回一个int值, 用于设置字段在结果中的顺序
注意: 优先级低于field.order.with,一般不建议同时使用。
field.order=#order
field.order=@com.fasterxml.jackson.annotation.JsonProperty#index
在推荐配置中选中
field.order=@com.fasterxml.jackson.annotation.JsonProperty#index
TestJsonFieldBean.java
public class TestJsonFieldBean {
@JsonProperty(value = "a", index = 99)
private Long propertyA;
private Long propertyB;
@JsonProperty(value = "c", index = 0)
private Long propertyC;
//constructors...
//getters...
}
名称 | 类型 |
---|---|
c | integer |
propertyB | integer |
a | integer |