swagger2 Illegal DefaultValue null for parameter type integer

Posted chywx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swagger2 Illegal DefaultValue null for parameter type integer相关的知识,希望对你有一定的参考价值。

问题,为了方便调试,引入了swagger2,但是在第一次访问的时候总是报

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判断的不对。
技术图片

解决

方式1-修改源码

将源码下载下来,进行编辑,把判断部分修改为if (example == null || example.isEmpty())
之后将其打包上传到maven私服即可。
弊端,修改源码只能上传到私服,麻烦,也比较难

方式2-修改代码

    @ApiModelProperty("开始时间,时间戳")
    private Long timeBegin;

修改为

    @ApiModelProperty(value = "开始时间,时间戳",example = "0")
    private Long timeBegin;

很明显,最容易,但是改动的也不少。

方式3-修改依赖

看网上说在swagger-models 1.5.21版本修复了该问题
技术图片

所以要升级版本

exclusions排除依赖

技术图片
通过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的主要内容,如果未能解决你的问题,请参考以下文章

C语言local function definitions are illegal

获取 Java 中 `-illegal-access` 设置的当前值

Illegal characters in path

SpringBoot整合Swagger2

如何将 Java 9 '--permit-illegal-access' 标志传递给 Webstart 应用程序?

SpringBoot框架 之 Swagger2