当前位置: 首页 > 知识库问答 >
问题:

执行目标组织失败。springframework。启动:spring boot maven插件:2.5.5:运行(默认cli)

穆子琪
2023-03-14

我是Spring的新手,我试着按照它的官方网站上给出的教程进行操作,突然出现了这个错误。

Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:2.5.5:run (default-cli) on project backend: Application finished with exit code: 1 -> [Help 1]

以下是我的pom。xml

4.0.0组织。springframework。boot spring boot starter父代2.5.5 com。Spring Boot后端示例0.0.1-SNAPSHOT后端演示项目

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

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

    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-beans</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-context</artifactId>
        <version>4.3.7.RELEASE</version>
    </dependency>

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

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <mainClass>BackendApplication</mainClass>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>repackage</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.5.5</version>
            <configuration>
                <skipTests>false</skipTests>
                <testFailureIgnore>true</testFailureIgnore>
                <forkMode>once</forkMode>
            </configuration>
        </plugin>           
    </plugins>
    
</build>

知道为什么不起作用吗?我已经尝试了许多基于别人错误的方法,但都不起作用。现在有点沮丧。任何帮助都将不胜感激

共有1个答案

韩烈
2023-03-14

此错误基本上是由于插件问题造成的。

通过运行以下命令为项目创建jar

mvn清理安装,然后java-jar jar本地化。jar

 类似资料: