版本问题 解决方案 将pom文件内的spring版本降低
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
文章探讨了如何处理版本冲突问题,具体方法是将pom文件中spring-boot-starter-parent的版本从高版本降至2.1.8.RELEASE,以此来确保项目稳定性和兼容性。
1565

被折叠的 条评论
为什么被折叠?



