springboot的依赖

列位看官大家好,今天我聊一聊springboot的依赖,废话不多说,开始!
跟之使用maven一样,我们想要依赖谁,就在pom.xml中申明一下,maven自动会帮我们搞定,
比如我们想用redis,就会这样写


   org.springframework.boot
   spring-boot-starter-data-redis

比如想使用mongodb,就会这样写


   org.springframework.boot
    spring-boot-starter-data-mongodb

再比如我们是个web工程,我们就会这样写


   org.springframework.boot
   spring-boot-starter-web

不难发现,他们有一个共同的特点都是以spring-boot-starter开始的!其实呀spring-boot-starter 就是springboot的场景启动器,它的作用是帮我们导入某个模块正常运行的所依赖的组件,我们以spring-boot-starter-web为例,点进去看看它干了什么

 
    
      org.springframework.boot
      spring-boot-starter
      2.0.1.RELEASE
      compile
    
    
      org.springframework.boot
      spring-boot-starter-json
      2.0.1.RELEASE
      compile
    
    
      org.springframework.boot
      spring-boot-starter-tomcat
      2.0.1.RELEASE
      compile
    
    
      org.hibernate.validator
      hibernate-validator
      6.0.9.Final
      compile
    
    
      org.springframework
      spring-web
      5.0.5.RELEASE
      compile
    
    
      org.springframework
      spring-webmvc
      5.0.5.RELEASE
      compile
    
  

从源码中得出,这里导入了web模块正常运行所依赖的组件tomcat,hibernate-validator,jackson,spring-web,spring-webmvc等等,其实Spring Boot将所有的功能场景都抽取出来,做成一个个的starter(启动器),只需要在项目里面引入这些starter 相关场景的所有依赖都会导入进来了。
启动器了解过后,大家是否还有一个疑惑呢,就是我们在pom.xml文件中导入依赖的时候,对比之前好像少了一个标签,这是怎么回事呢,我们继续走着...
其实啊在springboot使用的时候,我们必然会依赖一个父项目(spring-boot-starter-parent),在pom.xml文件中是这样存在的

 
        org.springframework.boot
        spring-boot-starter-parent
        2.0.1.RELEASE
        
    

点进父项目,我们发现,父项目也有一个依赖的父工程(spring-boot-dependencies),我们继续点进去...


        org.springframework.boot
        spring-boot-dependencies
        2.0.1.RELEASE
        ../../spring-boot-dependencies
    

这时候,我们会发现有这样一个标签,里面包含了好多还多的条目,因为实在是太长太长太长太长啦,这里我就粘贴一部分给大家看下


    2.10.0
    3.6.3
    5.1.46
    2.3.0
    5.1.2
    2.0.3.RELEASE
    4.0.1.RELEASE
    2.0.1.RELEASE
    Kay-SR6
    0.24.0.RELEASE
    5.0.4.RELEASE
    2.1.5.RELEASE
    3.21.0.1
    1.0.1
    2.5.1
    此处省略n多个...

到这里大家也看出来了,长归长,但其中的规律不难发现,里面所有的条目无一例外都包含一个关键字“version”,没错,我们的依赖的组件不需要写版本号就是因为它的版本号springboot会从这里去取!(没有在dependencies里面管理的依赖自然需要声明版本号)

总结一下:
1.spring-boot-starter Spring Boot场景启动器,为模块正常运行导入所依赖的组件
2.父项目 Spring Boot的版本仲裁中心

你可能感兴趣的:(springboot的依赖)