java—是否可以用springfox生成一个完整的模式示例?

ebdffaop  于 2021-07-23  发布在  Java
关注(0)|答案(0)|浏览(191)

有没有可能用springfox生成一个完整的模式示例?
我将springboot与springfox一起使用,似乎找不到一种方法来生成swagger规范网站上描述的结果。
https://swagger.io/docs/specification/2-0/adding-examples/
可以为整个模式(包括所有嵌套模式)指定一个示例,前提是该示例符合该模式。

definition:
  CatalogItem:
    type: object
    properties:
      id:
        type: integer
      name:
        type: string
      image:
        type: object
        properties:
          url:
            type: string
          width:
            type: integer
          height:
            type: integer
    required:
      - id
      - name
    example:   # <----------
      id: 38
      name: T-shirt
      image:
        url: images/38.png
        width: 100
        height: 100

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题