gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 15:45:56 28 4
gpt4 key购买 nike

我有一个基于 Spring Framework 4.3.7.RELEASE 的 Spring Boot 项目和 Spring 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')
}

最佳答案

做升级的第一步,就是增加spring-boot-starter-parent的版本.在您使用 Gradle 的情况下,它将是属性 springBootVersion 中的版本.

但是,对于 Spring Boot 2 重要的是要注意,还没有最终版本,因此您必须包含 Spring Boot 的里程碑或快照存储库。您可以在此处找到 URL: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" }
}

关于spring - 将 Spring Boot 应用程序升级到最新版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47472610/

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