Swagger2异常:Illegal DefaultValue null for parameter type integer(2.9.2版本)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Swagger2异常:Illegal DefaultValue null for parameter type integer(2.9.2版本)相关的知识,希望对你有一定的参考价值。
参考技术A 对于集成Swagger(2.9.2版本,其他版本没有验证是否存在该问题),搭建Spring boot基本架构,请查看之前的文章,这里直接分析Swagger的bug
SpringBoot+MyBatis搭建SSM基本骨架(Redis + Swagger+自定义配置 +mysql )
之前测试一直用postman,直到打开 http://localhost:5088/swagger-ui.htm 才发现存在bug
一、异常分析:
Illegal DefaultValue null for parameter type integer 和 NumberFormatException: For input string: ""
从上面这句可以看出,有个默认值是空字符串的变量转换成Integer类型时异常。
根据上面这句报错信息,点进去AbstractSerializableParameter.java:412可以看到
if(BaseIntegerProperty.TYPE.equals(type))
就是说如果实体属性类型是Integer,就把example转为Long类型,而example默认为"",导致转换错误。
二、解决办法:
我们知道,在Swagger的浏览器界面打开的时候,对上述的默认值解析错误。一般情况下我们都省略了实体类上加@ApiModelProperty。因此解决这个问题可以在实体类中的Integer类型的属性添加注解,并给example参数赋值,且值必须为数字类型。
如果每个值都需要添加,那么会很多。
所以下面是第二种办法。我们知道报错的是at io.swagger.models.parameters.AbstractSerializableParameter.getExample(AbstractSerializableParameter.java:412) ~[swagger-models-1.5.20.jar:1.5.20]
查看pom.xml我们引用的是springfox的包,找到github项目# springfox / springfox
issue查询swagger-models-1.5.20.jar,查看前面几天issue,可以发现有人已经给出了解决方案
比如 https://github.com/springfox/springfox/issues/2265
以上是关于Swagger2异常:Illegal DefaultValue null for parameter type integer(2.9.2版本)的主要内容,如果未能解决你的问题,请参考以下文章
异常: java.security.InvalidKeyException: Illegal key size
swagger2 升级2.9.2 后 NumberFormatException 异常
解决 Illegal DefaultValue null for parameter type integer 异常
MySQL的Illegal mix of collationsy异常原因和解决方法