Spring和Spring Boot的区别

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/cc_whale/article/details/79246192
  1. 简化Maven的配置
<dependencies>
    <dependency>
      <groupId>io.spring.platform</groupId>
      <artifactId>platform-bom</artifactId>
      <version>Athens-SR2</version>
      <type>pom</type>
       <scope>import</scope>
    </dependency>

            <dependency>
                <!-- Import dependency management from Spring Boot -->
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>1.4.3.RELEASE</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>

两个依赖就能引入spring的多种包
两个依赖引入的spring包

spring和spring boot的区别

猜你喜欢

转载自blog.csdn.net/cc_whale/article/details/79246192