如今用Swagger來生成API文檔的例子已經很是多了,今天碰到開發同事問了一個問題,幫着看了一下,主要仍是配置方法的問題,因此記錄一下。若是您也碰到了一樣的問題,但願本文對您有用。ide
問題描述函數
@ApiModelProperty註解是用來給屬性標註說明、默認值、是否能夠爲空等配置使用的,其中有一個屬性allowableValues是本文要講的重點,從屬性命名上就能知道,該屬性用來配置所標註字段容許的可選值。this
可是這個屬性是一個String類型,咱們要如何配置可選值呢?spa
咱們能夠經過源碼的註釋瞭解到一切:code
public @interface ApiModelProperty {
/**
* Limits the acceptable values for this parameter.
* <p>
* There are three ways to describe the allowable values:
* <ol>
* <li>To set a list of values, provide a comma-separated list.
* For example: {@code first, second, third}.</li>
* <li>To set a range of values, start the value with "range", and surrounding by square
* brackets include the minimum and maximum values, or round brackets for exclusive minimum and maximum values.
* For example: {@code range[1, 5]}, {@code range(1, 5)}, {@code range[1, 5)}.</li>
* <li>To set a minimum/maximum value, use the same format for range but use "infinity"
* or "-infinity" as the second value. For example, {@code range[1, infinity]} means the
* minimum allowable value of this parameter is 1.</li>
* </ol>
*/
String allowableValues() default "";
...
}
複製代碼
咱們只須要經過,分割來定義可選值,或者用range函數定義範圍等方式就能正確顯示了,好比:orm
public class Filter {
@ApiModelProperty(allowableValues = "range[1,5]")
Integer order
@ApiModelProperty(allowableValues = "111, 222")
String code;
}
複製代碼
再運行下程序,就能看到以下內容,設置的容許值正常顯示了。 cdn