若依(ruoyi)springboot2.x修改springframework版本
若依(ruoyi)springboot2.x修改springframework版本
·
首先在最外层pom中找到项目springboot依赖
点击去可以看到springboot框架的依赖信息
在<properties>标签中找到springframework框架版本
在 <dependencyManagement><dependencies>标签中找到
现在已经清楚springboot内置依赖配置,然后将 <properties>标签中
<spring-framework.version>5.3.18</spring-framework.version>
以及<dependencyManagement><dependencies>标签中
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring-framework.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
复制到外部pom对应块中(根据maven的就近原则)
最后重新刷新maven依赖即可
更多推荐
已为社区贡献2条内容
所有评论(0)