@ApiModelProperty()不支持list不生效
时间: 2023-07-25 22:47:01 浏览: 213
微信小程序tabBar不生效
5星 · 资源好评率100%
如果在@ApiModelProperty()注解中指定了List合对象的示例值,但是在生成API文档时没有显示出来,可能是由于文档工具的配置问题。不同的文档工具可能需要不同的配置才能正确显示List集合对象的示例值。
有些文档工具可能需要在配置文件中启用List集合对象的支持。例如,Swagger UI可以通过在Swagger配置文件中添加如下配置来启用List集合对象的支持:
```
springfox:
documentation:
swagger-ui:
enabled: true
enable-spring-data-rest: true
enable-matrix-variables: true
enable-url-templating: true
enable-hypermedia: true
enable-xml: true
enable-json-editor: true
enable-request-headers: true
enable-annotations: true
enable-default-group: true
enable-validation: true
model-converters:
- jdk8
- joda
- optional
- guava
- spring
- springfox
- jsr310
```
这个配置文件中的"enable-annotations: true"选项会启用@ApiModelProperty()注解的支持,使得Swagger UI可以正确显示List集合对象的示例值。
阅读全文