标签:artifact agg com 导入 illegal default blog 亲测 color
该异常是由 swagger 引起的
swagger 版本 1.9.2
解决原因:重新导入 swagger-annotations 和 swagger-models 版本 为 1.5.21
pom.xml 加入 相关依赖 亲测有效
1 <!-- 解决 Illegal DefaultValue null for parameter type integer 异常 --> 2 <dependency> 3 <groupId>io.swagger</groupId> 4 <artifactId>swagger-annotations</artifactId> 5 <version>1.5.21</version> 6 </dependency> 7 <dependency> 8 <groupId>io.swagger</groupId> 9 <artifactId>swagger-models</artifactId> 10 <version>1.5.21</version> 11 </dependency>
知识来源 :https://www.cnblogs.com/ampl/p/11426687.html
解决 Illegal DefaultValue null for parameter type integer 异常
标签:artifact agg com 导入 illegal default blog 亲测 color
原文地址:https://www.cnblogs.com/zhangzhonghui/p/11562095.html