【SpringBoot 笔记】SpringBoot版本降级

2022-04-03 00:00:00 版本 降级 笔记

在使用idea创建springboot项目时,可能需要创建一些低版本的springboot项目,但是发现idea只能选择一些新的版本
《【SpringBoot 笔记】SpringBoot版本降级》
我们可以先任意选择创建一个版本,等待项目文件构建完成后,在pom.xml中把单元测试部分的dependency注释掉

 <!--降级需要先将单元测试注释-->
   <!--<dependency>-->
       <!--<groupId>org.springframework.boot</groupId>-->
       <!--<artifactId>spring-boot-starter-test</artifactId>-->
       <!--<scope>test</scope>-->
       <!--<exclusions>-->
           <!--<exclusion>-->
               <!--<groupId>org.junit.vintage</groupId>-->
               <!--<artifactId>junit-vintage-engine</artifactId>-->
           <!--</exclusion>-->
       <!--</exclusions>-->
   <!--</dependency>-->

再修改版本号为指定的版本号

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.1.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

再等待maven自动导入,导入完成后恢复单元测试的dependency

    原文作者:普通网友
    原文地址: https://blog.csdn.net/m0_67400973/article/details/124099632
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。

相关文章