SpringBoot1.5.x升级到SpringBoot2.2.13记录
Posted 村长
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot1.5.x升级到SpringBoot2.2.13记录相关的知识,希望对你有一定的参考价值。
目录
SpringBoot1.x和SpringBoot2.x的一些区别
log4j-slf4j-impl cannot be present with log4j-to-slf4
为什么升级到2.x
1.SpringBoot 1.X 官方已不再进行维护;
2.SpringBoot 1.X 下许多新发现的SpringBoot和SpringFramework的漏洞无法再进行升级处理,安全扫描无法通过;
3.SpringBoot 2.X 下的应用启动速度会比SpringBoot1提升10到20秒时间,整体性能上也更优。
首先我们了解一下Springboot1.x和Springboot2.x有哪些区别,这样升级的时候也能避免一些坑
SpringBoot1.x和SpringBoot2.x的一些区别
- SpringBoot 2基于Spring5和JDK8,而Spring 1x则用的是降低版本,应用服务必须支持JDK8
- MVC部分,有些定制类改动了,比如WebMvcConfiguer,由抽象类改为接口,这是因为JDK8对接口有新的支持形式;统一错误处理,基类AbstarctErrorController也改动非常大。业务代码中如有对MVC的拓展需要改为使用springboot 2 的方式
- SpringBoot2默认不允许覆盖bean操作,如果要覆盖需要显示配置支持
- SpringBoot2废弃外部化配置RelaxedPropertyResolver,可用Binder配合env进行绑定获取
- JPA中,findById 返回了一个Optional对象,改动较大,会直接影响所有业务代码
- Acutator 默认情况,不再启用所有监控,另外编写自己监控信息,完全需要重写,HealthIndicator,EndPoint 变化很大
- ……其他的后面再补充
下面记录一下我升级过程中遇到的问题和解决方案
RelaxedPropertyResolver不可用
具体报错是这样的
[main]org.springframework.boot.SpringApplication[826]: Application run failed org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'avoidRepeatableCommitAspect': Unsatisfied dependency expressed through field 'cacheConfig'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'cacheConfig' defined in class path resource
[/cache/config/AutoConfiguration.class]: Bean instantiation via factory method failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [cache.config.CacheConfig]: Factory method 'cacheConfig' threw exception; nested exception is java.lang.NoClassDefFoundError: org/springframework/boot/bind/RelaxedPropertyResolver
原因:源于Environment 关注自动化,org.springframework.boot.bind 包将不再可用,现被 new relaxed binding infrastructure 替换。特别是,RelaxedDataBinder 相关的应用方式被替换为新的绑定API。
怎么解决呢?通过Binder以及相关绑定获取environment中的配置,具体方案往下看
通过Binder以及相关绑定获取environment中的配置
private static final Bindable<Map<String, Object>> STRING_REGISTRATION_MAP =
Bindable.mapOf(String.class, Object.class);
groovy异常
报错gmavenplus:gmavenplus-plugin:1.6:compile failed. Unable to determine Groovy version. Is Groovy declared as a dependency?
原因: groovy-all在springboot2中去掉了需要手动引入
解决:手动引入groovy jar即可
log4j-slf4j-impl cannot be present with log4j-to-slf4
原因:log4j-slf4j-impl 主要是 log4j 对 slf4j 接口的实现,而 log4j-to-slf4j 则是 slf4j 对 log4j 接口的适配,不能都有
解决:当前项目查找删除spring-boot-starter-test即可
overriding is disabled
The bean 'dynamicDataSourceAspect', defined in
DbAutoConfiguration, could not be registered. A bean with that name has already been defined in class path resource [xxx/ibatis/config/SpringConfigLoader.class] and overriding is disabled.
原因:springboot2新增加的配置,springboot不允许默认覆盖bean操作。如果要覆盖需要显式的配置支持解决
解决:properties增加配置spring.main.allow-bean-definition-overriding=true
其他相关版本升级参考
依赖 | 升级前版本 | 升级后版本 | 备注 |
spring | 4.3.29 | 5.2.20 | |
spring-jdbc | 4.3.29 | 5.2.20 | otp-common-biz-unanimous去掉 spring-jdbc 指定版本号 4.3.29.RELEASE |
commons-codec | 1.10 | 1.14 | |
bcpkix-jdk15on | 1.60 | 1.64 | |
druid | 1.1.20 | 1.2.8 | 使用框架提供的druid版本 |
spock | 1.3-groovy-2.4 | 2.2-M1-groovy-3.0 | |
groovy-all | 2.4.15 | 3.0.9 | |
byte-buddy | 1.9.3 | 1.11.22 | |
objenesis | 2.6 | 3.2 | |
hamcrest-core | 1.3 | 2.2 |
好了,可能不是很全,但是已经完整的升上来了,厉害了吧
以上是关于SpringBoot1.5.x升级到SpringBoot2.2.13记录的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot 1.5.x 与 Hibernate 4.x 的兼容性
129. Spring Boot动态修改logback框架日志级别(任意版本)
Spring Cloud 升级最新 Finchley 版本,踩了所有的坑!
001-Spring Cloud Edgware.SR3 升级最新 Finchley.SR1,spring boot 1.5.9.RELEASE 升级2.0.4.RELEASE注意问题点
Spring Boot 2.x 已经发布了很久,现在 Spring Cloud 也发布了 基于 Spring Boot 2.x 的 Finchley 版本,现在一起为项目做一次整体框架升级。