pom中的java编译错误,原因是使用openapi生成代码

apeeds0o  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(482)

所以我用的是openapi代码生成器(所有这些都适用于招摇过市的codegen,同样的错误)
我在eclipse中创建了一个maven项目,我有一个pom,看起来像这样。。。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.test.api.openapi</groupId>
  <artifactId>test-openapi-codegen</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>test-openapi-codegen</name>
  <url>http://maven.apache.org</url>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>11</maven.compiler.source>
    <maven.compiler.target>11</maven.compiler.target>
  </properties>

  <build>
   <plugins>
    <plugin>
     <groupId>org.openapitools</groupId>
     <artifactId>openapi-generator-maven-plugin</artifactId>
     <version>4.3.1</version>
     <executions>
        <execution>
            <goals>
                <goal>generate</goal>
            </goals>
            <configuration>
                <inputSpec>${project.basedir}/src/main/resources/openAPI.yaml</inputSpec>
                <generatorName>java</generatorName>
                <apiPackage>com.test.openapi.codegen.demo.api</apiPackage>
                <modelPackage>com.test.openapi.codegen.demo.model</modelPackage>
                <invokerPackage>com.test.openapi.codegen.demo</invokerPackage>
                <configOptions>
                <sourceFolder>src/java/</sourceFolder>
                </configOptions>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.openapitools</groupId>
      <artifactId>openapi-generator-maven-plugin</artifactId>
      <version>4.3.1</version>
      <scope>provided</scope>
    </dependency> 
  </dependencies>
</project>

所以这个pom使用一个yaml文件来生成java代码,yaml文件作为要生成的代码的架构/结构文件。
这里有一个链接:[https://openapi-generator.tech/docs/plugins/][1] -->链接中提到了我使用的插件。
因此,当我进行mvn干净编译时,代码是在tag->src/java/generated code->中提到的output文件夹中生成的。另外,正在为生成的代码生成pom,但是使用上面的命令“mvn clean compile”,我得到了下面的错误,即缺少了很多“包”。读下两行。
这里有一个陷阱,我检查了pom中生成的pom和依赖项,并使用“mvn compile”对其进行了测试,该pom的构建是成功的

Changes detected - recompiling the module!
    [INFO] Compiling 43 source files to T:\Perforce\testStream\openapi-codegen\target\classes
    [INFO] -------------------------------------------------------------
    [ERROR] COMPILATION ERROR :
    [INFO] -------------------------------------------------------------
    [ERROR] T:/Perforce/testStream/openapi-codegen/target/generated-sources/openapi/src/java/com/test/openapi/codegen/demo/model/ProvisioningBatch.java:[18,23] package com.google.gson does not exist

我做错什么了?我已经用最好的方式描述了。

wxclj1h5

wxclj1h51#

我通过添加缺少的依赖项修复了这个问题,但我认为这不是最好的方法,最好使用clijar来满足需要。
从maven central、openapi-codegen-cli.jar下载jar,它是一个可运行的jar,并根据req使用参数。
它将从yaml生成一个代码,然后您可以使用生成的pom来mvn clean install或任何您想要的东西

相关问题