如何在 Eclipse 中创建一个使用运行配置正确配置的 Spring Boot Starter 项目?

问题描述 投票:0回答:4

我按照Spring Tool Suite 3.6.4 中的 Spring Boot 支持中的说明进行操作,最终得到了一个存在几个问题的 Eclipse 项目。第一个问题是,当我右键单击包含“main”入口方法的类并选择“Run As”选项时,我得到的唯一条目是后备“Run Configurations...”方法。我既没有选择将其作为“Spring Boot 应用程序”或“Java 应用程序”运行。

我的问题是如何创建项目,或者按照该网站中的说明创建项目后我该怎么做才能获得“运行方式”选项?

除了上述信息外,我还应该补充以下信息:

  • 我正在使用 Eclipse 4.4.2 (Luna SR2) 和 STS 3.7.1
  • 我已经在 Windows 和 Linux(带有 OpenJDK 的 Fedora)上尝试过
  • 使用Java 8(Sun Hotspot 64位1.8.0_65)
  • 最初创建 pom.xml 时,它有一个错误,显然是由于缺少 m2e 所需的配置,我需要添加以下内容:

    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.eclipse.m2e</groupId>
                <artifactId>lifecycle-mapping</artifactId>
                <version>1.0.0</version>
                <configuration>
                    <lifecycleMappingMetadata>
                        <pluginExecutions>
                            <pluginExecution>
                                <pluginExecutionFilter>
                                    <groupId>org.apache.maven.plugins</groupId>
                                    <artifactId>maven-compiler-plugin</artifactId>
                                    <versionRange>[3.1,)</versionRange>
                                    <goals>
                                        <goal>compile</goal>
                                        <goal>testCompile</goal>
                                    </goals>
                                </pluginExecutionFilter>
                                <action>
                                    <ignore />
                                </action>
                            </pluginExecution>
                        </pluginExecutions>
                    </lifecycleMappingMetadata>
                </configuration>
            </plugin>
        </plugins>
    </pluginManagement>
    
  • Eclise 项目看起来也没有为 Java 应用程序正确配置。 Java src 树没有配置。以下是 .project 文件:

    <?xml version="1.0" encoding="UTF-8"?>
    <projectDescription>
            <name>demo</name>
            <comment></comment>
            <projects>
            </projects>
            <buildSpec>
                    <buildCommand>
                            <name>org.eclipse.m2e.core.maven2Builder</name>
                            <arguments>
                            </arguments>
                    </buildCommand>
            </buildSpec>
            <natures>
                    <nature>org.eclipse.m2e.core.maven2Nature</nature>
            </natures>
    </projectDescription>
    
  • 我可以按照如何在 Eclipse 本身中运行 Spring Boot Web 应用程序?手动运行应用程序(通过执行 [Project] --> Run As --> Maven Build... --> Goal: spring-boot:跑
java eclipse maven spring-tool-suite
4个回答
5
投票

要在 sts 中创建新的 spring-boot 项目,只需单击“新的 spring-starter 项目”,这将为您创建该项目。 新建->项目->Spring->Spring 启动项目

您将通过向导运行,选择“Web”复选框以选择网络应用程序 这将创建一个像这样的应用程序类

@SpringBootApplication
public class DemoApplication {

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

我自动生成的POM

<?xml version="1.0" encoding="UTF-8"?>
<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.example</groupId>
    <artifactId>demo</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <packaging>jar</packaging>

    <name>demo</name>
    <description>Demo project for Spring Boot</description>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.2.7.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <java.version>1.8</java.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>


</project>

4
投票

您需要安装适用于 Eclipse 的 Spring Tool Suite 插件。然后您将看到“Spring Boot App”运行配置(以及其他 STS 功能)。


0
投票

通过菜单通过 Spring Starter 项目创建 Spring Boot 应用程序后,需要执行其他步骤:进入项目属性并启用 Java 方面。然后,右键单击项目和 Maven > 更新项目。


0
投票

第 1 步在任何浏览器中搜索 ---> https://start.spring.io/ 第2步 输入您的项目详细信息

步骤 3 输入您的项目详细信息 步骤 4 单击生成 第5步进入eclipse并导入你的项目

© www.soinside.com 2019 - 2024. All rights reserved.