org.springframework.boot.SpringApplication无法解决
org.springframework.boot.SpringApplication can not be resolved
我正在尝试 运行 使用 spring-boot (1.2.4.RELEASE) 作为独立应用程序的 Web 服务服务器。我已经参考了 here spring 站点提供的教程。
但是在我的应用程序中,我无法在 spring 引导的任何 API 中找到 org.springframework.boot.SpringApplication class。
下面是我为此使用的 pom.xml 文件:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</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>
</plugin>
</plugins>
</build>
任何人都可以帮我找出其中可能存在的问题。
我成功了。使用 mvn clean install 后,它开始工作了。
最初它没有在项目依赖项中显示 spring-boot-1.2.5.RELEASE.jar(SpringApplication class 属于)。在 运行 上面的命令之后,这个依赖项被添加,现在它工作正常。
作为 Spring 框架的新手,这是由于在 spring 初始化程序 中使用不匹配的 java 版本而导致的错误之一和 自己的项目。
我已经使用 JDK 8 生成了 Spring Initializer 的初始化文件。但是对于项目的其余配置,我有 JDK 11。
解决方案 - 我只是使用 Spring 文档创建了一个新的 spring 初始化文件。
我正在尝试 运行 使用 spring-boot (1.2.4.RELEASE) 作为独立应用程序的 Web 服务服务器。我已经参考了 here spring 站点提供的教程。
但是在我的应用程序中,我无法在 spring 引导的任何 API 中找到 org.springframework.boot.SpringApplication class。
下面是我为此使用的 pom.xml 文件:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.2.4.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
</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>
</plugin>
</plugins>
</build>
任何人都可以帮我找出其中可能存在的问题。
我成功了。使用 mvn clean install 后,它开始工作了。
最初它没有在项目依赖项中显示 spring-boot-1.2.5.RELEASE.jar(SpringApplication class 属于)。在 运行 上面的命令之后,这个依赖项被添加,现在它工作正常。
作为 Spring 框架的新手,这是由于在 spring 初始化程序 中使用不匹配的 java 版本而导致的错误之一和 自己的项目。
我已经使用 JDK 8 生成了 Spring Initializer 的初始化文件。但是对于项目的其余配置,我有 JDK 11。
解决方案 - 我只是使用 Spring 文档创建了一个新的 spring 初始化文件。