报错:java.lang.NumberFormatException: For input string: ""
因为 2.9.2中默认使用的是 swagger-models-1.5.20 版本,该版本中的example只判断了值是否为空,但是并没有判断值是否是空串,
映射上就会报 NumberFormatException 异常
解决方式:
排除swagger2中 swagger-models-1.5.20 版本的依赖,
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger2</artifactId>
<exclusions>
<exclusion>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
</exclusion>
</exclusions>
</dependency>
手动添加 1.5.21 版本,该版本已解决 只判断 null 不判断 “”的问题
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.5.21</version>
</dependency>