理解Spring Boot中的pom配置
-
spring-boot-starter-parent : 是当前项目的父依赖
spring-boot-starter-parent 继承 spring-boot-dependencies
spring-boot-dependencies 里面定义了很多组件版本号,我们引用对应依赖时,不需要写标签
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.6.RELEASE</version>
</parent>
- spring-boot-starter-web spring-boot-starter-web
spring-boot-starter : 它是SpringBoot的场景启动器,它针对不同场景定义了很多不同的场景启动器,
你的项目需要使用哪些场景启动器,则直接依赖对应的启动器就可以了. spring-boot-starter-web 构建WEb项目,
比如:tomcat springmv
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
- sprin