标签:网上 插件 art swagger for number 方便 通过 amp
Illegal DefaultValue null for parameter type integer
让人看着很不输入
很明显说是NumberFormatException
,查看AbstractSerializableParameter的getExample得知
@JsonProperty("x-example")
public Object getExample() {
if (this.example == null) {
return null;
} else {
try {
if ("integer".equals(this.type)) {
return Long.valueOf(this.example);
}
在进行转化的时候报错,在this.example == null
判断的不对。
将源码下载下来,进行编辑,把判断部分修改为if (example == null || example.isEmpty())
之后将其打包上传到maven私服即可。
弊端,修改源码只能上传到私服,麻烦,也比较难
将
@ApiModelProperty("开始时间,时间戳")
private Long timeBegin;
修改为
@ApiModelProperty(value = "开始时间,时间戳",example = "0")
private Long timeBegin;
很明显,最容易,但是改动的也不少。
看网上说在swagger-models
1.5.21
版本修复了该问题
所以要升级版本
通过maven integration extension
插件将swagger-models
1.5.20
依赖排除
再引入1.5.21
依赖,如下代码
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<version>2.9.2</version>
<exclusions>
<exclusion>
<artifactId>swagger-annotations</artifactId>
<groupId>io.swagger</groupId>
</exclusion>
</exclusions>
</dependency>
再查看源码
ok,完美解决!
swagger2 Illegal DefaultValue null for parameter type integer
标签:网上 插件 art swagger for number 方便 通过 amp
原文地址:https://www.cnblogs.com/chywx/p/12515990.html