1、搭建springboot項目有兩種方式
一、繼承springboot項目
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.0.4.RELEASE</version> </parent>
二、實際中有時候不想以springboot做爲父類,能夠換另一種方式添加springboot依賴spring
<!--添加版本依賴管理-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.0.4.RELEASE</version>
<type>pom</type>
<scope>import</scope>
</dependency>