我们点开spring-boot-mytest的父依赖spring-boot-starter-parent,
再点开spring-boot-starter-parent的父依赖spring-boot-dependencies,
在spring-boot-dependencies里面看到声明了很多第三方依赖的版本,在properties标签中,
在依赖管理dependencyManagement标签中引用了这些版本号进行版本锁定。
我们的springboot项目通过继从而承实现了依赖版本管理。
spring-boot-starter-web
它打包了web开发场景下需要用到的依赖,
基于依赖传递,我们的项目也存在对应的依赖,就不需要额外的易用spring-MVC、tomcat等依赖。
点开spring-boot-starter-web。
springboot还提供了很多其它常用开发场景下的起步依赖。