最新的springboot版本是多少,发一份gradle地址呢
时间: 2023-02-10 15:31:54 浏览: 119
最新版本springboot小白必备
目前最新的 Spring Boot 版本是 2.5.0,您可以在以下地址找到 gradle 相关的安装信息:
https://docs.spring.io/spring-boot/docs/current/gradle-plugin/reference/html/
具体使用方法如下:
在您的项目的 build.gradle 文件中加入:
```
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.5.0")
}
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'
bootJar {
baseName = 'myproject'
version = '0.0.1-SNAPSHOT'
}
repositories {
mavenCentral()
}
dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
testCompile("org.springframework.boot:spring-boot-starter-test")
}
```
然后在命令行中运行 gradle build 即可构建项目。
阅读全文