Eclipse 项目不识别 Swagger Codegen 工件



我通过直接修改我的pom.xml文件将 Swagger Codegen 添加到我的 Eclipse 项目中:

<plugin>
    <!--
        Plugin that provides API-first development using swagger-codegen to
        generate Spring-MVC endpoint stubs at compile time from a swagger definition file
    -->
    <groupId>io.swagger</groupId>
    <artifactId>swagger-codegen-maven-plugin</artifactId>
    <version>${swagger-codegen-maven-plugin.version}</version>
    <executions>
        <execution>
                <id>generate-swagger-javaclient</id>
                <phase>generate-sources</phase>
                <goals>
                    <goal>generate</goal>
                </goals>
                <configuration>
                    <inputSpec>src/main/resources/swagger/remote-api.json</inputSpec>
                    <language>java</language>
                    <apiPackage>com.myproj</apiPackage>
                    <modelPackage>com.myproj.model</modelPackage>
                    <generateSupportingFiles>true</generateSupportingFiles>
                    <generateApiTests>false</generateApiTests>
                    <configOptions>
                        <dateLibrary>java8</dateLibrary>
                    </configOptions>
                    <library>resttemplate</library>
                </configuration>
            </execution>
        </executions>
    
</plugin>

如果我运行 Maven 更新或 Maven generate-sources 目标,我会得到 Eclipse 项目的 /target/generated-sources/swagger/src 文件夹中生成的所有工件。

但是,Eclipse无法识别它们。我应该像普通人一样手动编辑我的 Eclipse 构建路径,还是应该自动识别这个新的源文件夹?

您可以使用

build-helper-maven-plugin将生成的源代码添加到构建路径中,如果此插件本身不支持它。

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>build-helper-maven-plugin</artifactId>
    <executions>
        <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
                <goal>add-source</goal>
            </goals>
            <configuration>
                <sources>
                    <source>${project.basedir}/target/generated-sources/</source>
                </sources>
            </configuration>
        </execution>
    </executions>
</plugin>

在 Eclipse 4.9.0 (2018-09( 中,我必须将生成的源文件夹添加为项目的源文件夹,如下所示:

  1. 打开"导航器"视图
  2. 浏览到目标/生成的源(或生成源的任何文件夹(。
  3. 右键单击该文件夹
  4. 单击"构建路径" ->"用作源文件夹">

菜单树屏幕截图

不能解决"生命周期配置未涵盖插件执行"的问题。

此时的答案是,将生成的源文件夹添加到构建路径似乎是强制性的。

Ctrl+

shift+R

打开

"打开资源"对话框。除了消息行"输入资源名称..."。有一个下拉选项。当您单击它时,您将获得"显示状态","显示派生来源"等选项。

必须确保选中"显示派生源"。Eclipse也将开始显示大摇大摆的生成工件。

相关内容

  • 没有找到相关文章

最新更新