将Spring Boot应用程序升级到最新版本

时间:2017-11-24 11:43:52

标签: spring spring-boot build.gradle

我有一个Spring Boot项目,该项目基于Spring Framework 4.3.7.RELEASESpring Boot 1.5.2.RELEASE
我使用Java配置方法。如何将此项目升级到最新版本的Spring Boot和Spring Framework(Spring Boot 2.xSpring Framework 5.x)?我已查看this page,但不幸的是,这对我没有任何帮助。很高兴收到任何进一步的指导。

这是我的build.gradle文件的样子:

buildscript {
    ext {
        springBootVersion = '1.5.2.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'org.springframework.boot'

version = '0.1.0-alpha.2'
sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

bootRun.systemProperties = System.properties

springBoot {
    executable = true
}

dependencies {
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-security')
    compile('mysql:mysql-connector-java')
    compile('org.modelmapper:modelmapper:1.1.0')
    compile('com.fasterxml.jackson.datatype:jackson-datatype-jsr310')
    testCompile('org.springframework.boot:spring-boot-starter-test')
    testCompile('org.springframework.security:spring-security-test')
    testCompile('org.modelmapper:modelmapper:1.1.0')
}

1 个答案:

答案 0 :(得分:6)

升级的第一步是增加spring-boot-starter-parent的版本。对于使用Gradle的情况,它将是属性springBootVersion中的版本。

对于Spring Boot 2,重要的是要注意,还没有最终版本,因此您必须包含Spring Boot中的里程碑或快照存储库。您可以在此处找到这些网址:https://docs.spring.io/spring-boot/docs/2.0.0.M4/reference/htmlsingle/#getting-started-first-application-pom,但该文档适用于Maven。

Gradle的正确设置如下所示:

buildscript {
    ext {
        springBootVersion = '2.0.0.M6'
    }
    repositories {
        mavenCentral()
        maven { url "https://repo.spring.io/snapshot" }
        maven { url "https://repo.spring.io/milestone" }
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
    }
}

repositories {
    mavenCentral()
    maven { url "https://repo.spring.io/snapshot" }
    maven { url "https://repo.spring.io/milestone" }
}