org.springframework.boot
是 Spring Boot 框架的核心插件,用于简化 Spring 应用的初始搭建以及开发过程。Spring Boot 提供了一系列的默认配置,使得开发者能够快速启动和运行项目。
spring-boot-maven-plugin
和 spring-boot-gradle-plugin
插件,可以快速打包和启动应用。org.springframework.boot:spring-boot-maven-plugin
org.springframework.boot:spring-boot-gradle-plugin
适用于需要快速搭建和部署 Spring 应用的场景,如微服务、RESTful API 等。
在 Maven 或 Gradle 构建过程中,找不到 org.springframework.boot
插件,版本为 2.2.4.RELEASE
。
2.2.4.RELEASE
不存在。pom.xml
或 build.gradle
文件中的仓库配置正确。例如,在 pom.xml
中:pom.xml
或 build.gradle
文件中的仓库配置正确。例如,在 pom.xml
中:build.gradle
中:build.gradle
中:https://repo.maven.apache.org/maven2
。org.springframework.boot:spring-boot-maven-plugin:2.2.4.RELEASE
是否存在。2.3.4.RELEASE
:2.3.4.RELEASE
:<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 https://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>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
</parent>
<dependencies>
<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>
</project>
plugins {
id 'org.springframework.boot' version '2.3.4.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'java'
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
领取专属 10元无门槛券
手把手带您无忧上云