Swagger Codegen Maven插件在生成的代码中仅包含第一个$ ref

时间:2018-10-11 07:31:30

标签: java maven swagger openapi

如果我定义如下的架构对象:

UpdateDto:
  allOf:
  - $ref: '#/Update'
  - $ref: '#/Base'

UpdateBase均作为类生成。 生成的UpdateDto仅扩展了Update。

是否可以通过某种方式将Update和Base生成为接口,以便UpdateDto可以同时实现它们。

我正在使用以下插件:

<plugins>
    <plugin>
        <groupId>io.swagger.codegen.v3</groupId>
        <artifactId>swagger-codegen-maven-plugin</artifactId>
    </plugin>
</plugins>

0 个答案:

没有答案