Swagger2(2.9版本)集成springboot(2.3.7版本)出现Illegal DefaultValue null for parameter type integer异常


	Swagger2(2.9版本)集成springboot(2.3.7版本)出现Illegal DefaultValue null for parameter type integer异常
[编程语言教程]

在使用Swagger2.9的过程中,出现Illegal DefaultValue null for parameter type integer

在网上查找了解决办法,说是空字符串转换integer异常,需要在相应的integer字段加上@ApiModelProperty注解,然后加上属性 example = "1",但是方法无效,依旧出错。

后来在springfox的github上找到解决办法,特此记录一下:

  issue上认为,swagger-models-1.5.20.jar 这个包有bug或者其他原因造成的,所以需要我们自己更正新的包

 1 <dependency>
 2     <groupId>io.springfox</groupId>
 3     <artifactId>springfox-swagger2</artifactId>
 4     <version>2.9.2</version>
 5 <!--先是排除有问题的包-->
 6     <exclusions>
 7         <exclusion>
 8             <groupId>io.swagger</groupId>
 9             <artifactId>swagger-annotations</artifactId>
10         </exclusion>
11         <exclusion>
12             <groupId>io.swagger</groupId>
13             <artifactId>swagger-models</artifactId>
14         </exclusion>
15     </exclusions>
16 </dependency>
17 <dependency>
18     <groupId>io.springfox</groupId>
19     <artifactId>springfox-swagger-ui</artifactId>
20     <version>2.9.2</version>
21 </dependency>
22 <!--然后手动加入没问题的包-->
23 <dependency>
24     <groupId>io.swagger</groupId>
25     <artifactId>swagger-annotations</artifactId>
26     <version>1.5.21</version>
27 </dependency>
28 <dependency>
29     <groupId>io.swagger</groupId>
30     <artifactId>swagger-models</artifactId>
31     <version>1.5.21</version>
32 </dependency>
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » Swagger2(2.9版本)集成springboot(2.3.7版本)出现Illegal DefaultValue null for parameter type integer异常