Spring Boot-maven依赖:spring-boot-starter-parent


Springboot-maven依赖:spring-boot-starter-parent

这是Springboot父级依赖,表示当前是Springboot项目

可以用来控制Maven默认依赖版本,使用后可以省去version标签。spring-boot-starter-web和`spring-

未使用spring-boot-starter-parent


        
            org.springframework.boot
            spring-boot-starter-web
            2.4.2
        
        
            org.springframework.boot
            spring-boot-starter-test
            2.4.2
        

boot-starter-test`的版本都是2.4.2

省去写version

使用spring-boot-starter-parent


    org.springframework.boot
    spring-boot-starter-parent
    2.4.2
    



        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test