gpt4 book ai didi

java - 找不到 SpringApplication 类

转载 作者:太空宇宙 更新时间:2023-11-04 11:00:19 38 4
gpt4 key购买 nike

我使用 Maven 添加 spring-boot Artifact 作为依赖项。

SpringApplication class not found in spring-boot-starter-actuator version 1.5.8.RELEASE. 

移动了吗?

POM 片段

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.8.RELEASE</version>
</parent>

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

使用版本 1.5.7.RELEASE 后,我找到该类没有问题。

代码

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class Application {

public static void main(String[] args) throws Throwable {
SpringApplication.run(Application.class);
}
}

最佳答案

org.springframework.boot.SpringApplication 位于 spring-boot jar 中,而不是位于 spring-boot-starter-actuator 中,-starter- JAR 只是包装的 POM,提供一组精选的依赖项,因此 spring-boot-starter-actuator jar 从未包含 SpringApplication

您可以获得 spring-boot-1.5.8.RELEASE.jar from Maven Central并且它肯定包含org.springframework.boot.SpringApplication

关于java - 找不到 SpringApplication 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46977543/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com