我有一个用 Swagger 编写的 API,我想为其生成服务实现和客户端,它们必须位于单独的 maven 模块中。
我正在考虑将它们分成 3 个单独的 Maven 模块(或同一个父 pom 的子模块)。
parent
+- api
+- src/main/resources/api/service.yaml
+- client
+- service
然后在客户端和服务中我都会有swagger-codegen-maven-plugin
. 这样,两者将保持同步,我将只从一个地方维护服务。其他客户端也可以依赖于api
工件并从service.yaml
Swagger API 定义生成他们的代码。
我的困难是如何让服务和客户端引用service.yaml
另一个 Maven 依赖项?
这是我目前在 service 中拥有的pom.xml
,但它指的是 service 模块的本地资源,而不是api
maven 依赖项。
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>${io.swagger.codegen.version}</version>
<executions>
<execution>
<id>api</id>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<!-- can this refer to another maven dependency's resources? -->
<inputSpec>${basedir}/src/main/resources/api/service.yaml</inputSpec>
<language>spring</language>
<library>spring-boot</library>
<modelPackage>com.test.model</modelPackage>
<apiPackage>com.test.api</apiPackage>
<generateSupportingFiles>false</generateSupportingFiles>
<configOptions>
<java8>true</java8>
<dateLibrary>java8</dateLibrary>
<interfaceOnly>true</interfaceOnly>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
不确定这是我必须从 Maven 做的事情,从另一个 maven 依赖项中引用资源,还是我必须在 swagger 插件配置中做的事情。