POM 中的编译错误,由于使用 openApi 来生成代码
compilation error in POM, due to use of openApi usage for code generation
所以我正在使用 openApi 代码生成器。 (所有这些都适用于 Swagger 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 文件充当要生成的代码的 architecture/structure 文件。
这是一个 link : [https://openapi-generator.tech/docs/plugins/][1] --> link 中提到了我使用的插件.
所以当我进行 mvn clean compile 时,代码在标记 -> src/java/generated-code -> 中提到的输出文件夹中生成,就像这样。还为该生成的代码生成了一个 POM,但是使用上面的命令“mvn clean compile”我得到了以下错误,说丢失了很多“包。阅读下两行。
这里有一个问题,我检查了生成的 POM,并且 POM 中正确存在依赖项,我也使用“MVN 编译”对其进行了测试,并且构建该 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
我做错了什么?我已经用最好的方式描述了。
我通过添加缺少的依赖项解决了这个问题,但我认为这不是最好的方法,最好使用 cli jar 来满足需要。
从 maven central、openapi-codegen-cli.jar 下载 jar 及其可运行的 jar,并根据要求使用参数。
它将从 YAML 生成代码,然后您可以使用生成的 POM 进行 mvn clean install 或任何您想要的
所以我正在使用 openApi 代码生成器。 (所有这些都适用于 Swagger 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 文件充当要生成的代码的 architecture/structure 文件。
这是一个 link : [https://openapi-generator.tech/docs/plugins/][1] --> link 中提到了我使用的插件.
所以当我进行 mvn clean compile 时,代码在标记 -> src/java/generated-code -> 中提到的输出文件夹中生成,就像这样。还为该生成的代码生成了一个 POM,但是使用上面的命令“mvn clean compile”我得到了以下错误,说丢失了很多“包。阅读下两行。
这里有一个问题,我检查了生成的 POM,并且 POM 中正确存在依赖项,我也使用“MVN 编译”对其进行了测试,并且构建该 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
我做错了什么?我已经用最好的方式描述了。
我通过添加缺少的依赖项解决了这个问题,但我认为这不是最好的方法,最好使用 cli jar 来满足需要。
从 maven central、openapi-codegen-cli.jar 下载 jar 及其可运行的 jar,并根据要求使用参数。
它将从 YAML 生成代码,然后您可以使用生成的 POM 进行 mvn clean install 或任何您想要的