Swagger codegen 生成重复的变量

Joh*_*Doe 2 java yaml http swagger swagger-codegen

我正在尝试从包含以下内容的 yaml 生成客户端

  acceptParam:
    name: Accept
    type: string
    required: true
    in: header
    description: Accepted Content-type. Should be set to application/json
  contentTypeParam:
    name: Content-Type
    type: string
    required: true
    in: header
    description: Request Content-type. Should be set to application/json
Run Code Online (Sandbox Code Playgroud)

这意味着acceptcontentType将出现在生成的方法签名中。

最重要的是,我配置了这样的插件

<plugin>
    <groupId>io.swagger.codegen.v3</groupId>
    <artifactId>swagger-codegen-maven-plugin</artifactId>
    <version>3.0.18</version>
    <executions>
        <execution>
            <goals>
                <goal>generate</goal>
            </goals>
            <phase>generate-sources</phase>
            <configuration>
                <inputSpec>${project.basedir}/src/main/resources/swagger.yaml</inputSpec>
                <language>java</language>
                <configOptions>
                    <dateLibrary>joda</dateLibrary>
                    <localVarPrefix>localVar</localVarPrefix>
                </configOptions>
                <library>resttemplate</library>
                <output>${project.build.directory}/generated-sources</output>
                <modelPackage>com.example.client.model</modelPackage>
                <apiPackage>com.example.client.api</apiPackage>
                <generateApiTests>false</generateApiTests>
                <generateModelTests>false</generateModelTests>
            </configuration>
        </execution>
    </executions>
</plugin>
Run Code Online (Sandbox Code Playgroud)

尽管如此,之后mvn clean install

我越来越

错误:(130,31)java:变量accept已在方法中定义

生成的代码包含

public Response authorize(Request body, String accept, ...) {
   ....
   final List<MediaType> accept = apiClient.selectHeaderAccept(accepts);    
   ....
}
Run Code Online (Sandbox Code Playgroud)

我尝试了不同版本的插件(从2.3.0到最新的),在克服了许多其他问题后,我总是以这样的方式结束。

Wet*_*les 5

虽然有点晚了,但我在使用第 3 方 API 时遇到了同样的问题,这是搜索中出现的第一个问题。openapi yaml 在我的情况下似乎是有效的,并且由于它是第 3 方,因此更改它无论如何都是不可行的。我必须使用 localVariablePrefix (变量完全拼写出来)。

因此,要修改您的 pom.xml:

<configOptions>
    <dateLibrary>joda</dateLibrary>
    <localVariablePrefix>localVar</localVariablePrefix>
</configOptions>
...
Run Code Online (Sandbox Code Playgroud)