您的位置:首页 > 财经 > 产业 > spring boot2.7.x遇到问题

spring boot2.7.x遇到问题

2025/1/3 20:20:13 来源:https://blog.csdn.net/forwujinwei/article/details/139507321  浏览:    关键词:spring boot2.7.x遇到问题

validation报错

高版本已移除了validation以来,需手动添加

<dependency><groupId>jakarta.validation</groupId><artifactId>jakarta.validation-api</artifactId>
</dependency>

mybatis报错

升级版本

<dependency><groupId>org.mybatis</groupId><artifactId>mybatis</artifactId><version>3.5.12</version>
</dependency>
<dependency><groupId>org.mybatis</groupId><artifactId>mybatis-spring</artifactId><version>2.1.1</version>
</dependency>

spring.factories配置不生效

自动配置注册文件
自动配置注册有了一个比较大的调整,之前都是写在下面 文件中的:

META-INF/spring.factories

现在改名了:

META-INF/spring/org.springframework.boot.autoconfigure.AutoConfiguration.imports

另外格式也变了,Spring Boot 2.7 中直接每一行是一个自动配置类
在这里插入图片描述
在这里插入图片描述

为了向后兼容,META-INF/spring.factories 虽然现在被标识废弃了,但现在仍然可以使用,后续可能被彻底删除,建议使用新的规范。

minio无法初始化

Failed to instantiate [io.minio.MinioClient]: Factory method 'minioClient' threw exception; nested e

版本问题,将minio的版本升级到

<dependency><groupId>io.minio</groupId><artifactId>minio</artifactId><version>8.3.7</version>
</dependency>

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com