本文介绍了Swagger+Spring:是否可以保留有效负载中的字段顺序?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我的有效载荷类是:
Assuming my payload class is:
public class Payload {
private final long id;
private final String aField;
}
springfox 将按字典顺序对有效载荷字段进行排序,这将产生以下有效载荷规范:
springfox will sort the payload fields in the lexicographical order which will produce the following payload spec:
{
"aField": "string",
"id": 0
}
是否有任何控制参数告诉 springfox 保留原始字段顺序?
Is there any control parameter which tells the springfox to preserve the original fields order?
推荐答案
您可以使用 @ApiModelProperty 并指定一个 position
:
You may use @ApiModelProperty and specify a position
:
public class Payload {
@ApiModelProperty(value = "The id", position = 1)
private final long id;
@ApiModelProperty(value = "The a field", position = 2)
private final String aField;
}
这篇关于Swagger+Spring:是否可以保留有效负载中的字段顺序?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!