8.如何统一引入Spring Boot的版本?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了8.如何统一引入Spring Boot的版本?相关的知识,希望对你有一定的参考价值。
黑马程序员公开课上就讲过,引入SpringBoot版本总共有2种方式第一:继承spring-boot-starter-parent项目,配置代码如下
org.springframework.boot
spring-boot-starter-parent
2.1.13.RELEASE
第二:导入spring boot 依赖清单BOM,代码如下
org.springframework.boot
spring-boot-dependencies
2.1.13.RELEASE
pom
import
这两者方式,一般我们在项目中都采用第一种! 参考技术A 1、建一个父工程,在pom文件中规定版本号
2、建一个子工程继承父工程即可
以上是关于8.如何统一引入Spring Boot的版本?的主要内容,如果未能解决你的问题,请参考以下文章
MateCloud 3.6.8 发布,升级至Spring Boot 2.5.1版本
MateCloud 3.6.8 发布,升级至Spring Boot 2.5.1版本
springboot默认版本引入导致依赖修改版本引入不起作用