springboot 框架 - 探究-pom文件
一、pom文件
- 父项目
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.4.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent>
他的父项目是:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.2.4.RELEASE</version> <relativePath>../../spring-boot-dependencies</relativePath> </parent>用来真正管理Spring Boot应用里面的所有依赖版本
所以这个父项目相当于“Spring Boot的版本控制中心”,即导入依赖时无需写版本号 备注:没有在spring-boot-dependencies 里面管理的依赖仍需要声明版本号
- 导入的依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>spring-boot-starter:spring-boot场景启动器,导入了web模块正常运行所依赖的组建Spring Boot将所有的功能场景抽取出来,做成一个个的starters(启动器),只需要在项目里面引入这些 starter,相关场景所有依赖都会导入进来,需要用什么功能,就导入什么场景启动器即可。具体场景启动器可参照Spring Boot官网
相关推荐
与卿画眉共浮生 2020-11-13
hellowordmonkey 2020-11-02
丽丽 2020-10-30
feinifi 2020-10-14
yangjinpingc 2020-10-09
RickyIT 2020-09-27
lisongchuang 2020-09-27
meleto 2020-08-17
幸运小侯子 2020-08-14
csuzxm000 2020-08-02
咻pur慢 2020-08-02
haidaoxianzi 2020-07-16
Sweetdream 2020-06-28
neweastsun 2020-06-25
86427019 2020-06-25
mendeliangyang 2020-06-25
YangHuiLiang 2020-06-24
CaesarHome 2020-11-09
瑞风轻拂 2020-11-02