查看原文
其他

Swagger中配置了@ApiModelProperty的allowableValues属性但不显示的问题

翟永超 程序猿DD 2019-07-13

现在用Swagger来生成API文档的例子已经非常多了,今天碰到开发同事问了一个问题,帮着看了一下,主要还是配置方法的问题,所以记录一下。如果你也碰到了同样的问题,希望本文对您有用。


问题描述 @ApiModelProperty注解是用来给属性标注说明、默认值、是否可以为空等配置使用的,其中有一个属性allowableValues是本文要讲的重点,从属性命名上就能知道,该属性用来配置所标注字段允许的可选值。


但是这个属性是一个String类型,我们要如何配置可选值呢?


我们可以通过源码的注释了解到一切:

  1. public @interface ApiModelProperty {

  2.    /**

  3.     * Limits the acceptable values for this parameter.

  4.     * <p>

  5.     * There are three ways to describe the allowable values:

  6.     * <ol>

  7.     * <li>To set a list of values, provide a comma-separated list.

  8.     * For example: {@code first, second, third}.</li>

  9.     * <li>To set a range of values, start the value with "range", and surrounding by square

  10.     * brackets include the minimum and maximum values, or round brackets for exclusive minimum and maximum values.

  11.     * For example: {@code range[1, 5]}, {@code range(1, 5)}, {@code range[1, 5)}.</li>

  12.     * <li>To set a minimum/maximum value, use the same format for range but use "infinity"

  13.     * or "-infinity" as the second value. For example, {@code range[1, infinity]} means the

  14.     * minimum allowable value of this parameter is 1.</li>

  15.     * </ol>

  16.     */

  17.    String allowableValues() default "";

  18.    ...

  19. }


我们只需要通过,分割来定义可选值,或者用range函数定义范围等方式就能正确显示了,比如:

  1. public class Filter {

  2.    @ApiModelProperty(allowableValues = "range[1,5]")

  3.    Integer order

  4.    @ApiModelProperty(allowableValues = "111, 222")

  5.    String code;

  6. }


再运行下程序,就能看到如下内容,设置的允许值正常显示了。

-END-

 近期热文:

关注我

点击“阅读原文”,看本号其他精彩内容

    您可能也对以下帖子感兴趣

    文章有问题?点此查看未经处理的缓存