我有以下openapi
文件。我预计生成的 API 类名将是SampleApi
因为操作 "/hello" 被标记为 "sample"
tags
。但它正在使用名称生成 API 类名称operation
,它是HelloApi
. 我在这里想念什么?我正在使用openapi-generator-maven-plugin
版本3.3.1
openapi: "3.0.0"
info:
version: 1.0.0
title: Sample Service
tags:
- name: sample
paths:
/hello:
get:
summary: Says hello world
operationId: greet
tags:
- sample
responses:
200:
description: ok
content:
plain/text:
schema:
type: string
example: Hello World