本站消息

  出租广告位,需要合作请联系站长

  今日名言-想象你自己对困难作出的反应,不是逃避或绕开它们,而是面对它们,同它们打交道,以一种进取的和明智的方式同它们奋斗 。——马克斯威尔·马尔兹

  今日名言-用谅解、宽恕的目光和心理看人、待人。人就会觉得葱笼的世界里,春意盎然,到处充满温暖。——蔡文甫


+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

springboot源码剖析之依赖管理

发布于2021-07-18 20:31     阅读(1401)     评论(0)     点赞(8)     收藏(4)


问题:(1)为什么导入dependency时不需要指定版本?

在Spring Boot入门程序中,项目pom.xml文件有两个核心依赖,分别是spring-boot-starterparent和spring-boot-starter-web,关于这两个依赖的相关介绍具体如下

spring-boot-starter-parent

我们知道在创建spring boot项目时,如果选的spring initializr去创建项目 会自动创建parent节点

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-parent</artifactId>
  4. <version>2.2.9.RELEASE</version>
  5. <relativePath/> <!-- lookup parent from repository -->
  6. </parent>

上述代码中,将spring-boot-starter-parent依赖作为Spring Boot项目的统一父项目依赖管理,并 将项目版本号统一为2.2.9.RELEASE,该版本号根据实际开发需求是可以修改。

点击 spring-boot-starter-parent进去看里面有什么首先看 spring-boot-starter-parent 的 parent节点

  1. <parent>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-dependencies</artifactId>
  4. <version>${revision}</version>
  5. <relativePath>../../spring-boot-dependencies</relativePath>
  6. </parent>

再次点击spring-boot-dependencies 进去查看  可以看到在这里进行了版本控制,明确了不同jar的版本是多少,因此可以在外部真正使用时不需要指定版本。

问题一总结

spring-boot-starter-parent 通过继承 spring-boot-dependencies 从而实现了SpringBoot的版本依 赖管理,所以我们的SpringBoot工程继承spring-boot-starter-parent后已经具备版本锁定等配置了,这也 就是在 Spring Boot 项目中部分依赖不需要写版本号的原因

(2)问题2: spring-boot-starter-parent父依赖启动器的主要作用是进行版本统一管理,那么项目 运行依赖的JAR包是从何而来的?

点击 spring-boot-starter-web查看其依赖的jar

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-json</artifactId>
  9. </dependency>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-tomcat</artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-validation</artifactId>
  17. <exclusions>
  18. <exclusion>
  19. <groupId>org.apache.tomcat.embed</groupId>
  20. <artifactId>tomcat-embed-el</artifactId>
  21. </exclusion>
  22. </exclusions>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework</groupId>
  26. <artifactId>spring-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework</groupId>
  30. <artifactId>spring-webmvc</artifactId>
  31. </dependency>
  32. </dependencies>

 从上述代码可以发现,spring-boot-starter-web依赖启动器的主要作用是打包了Web开发场景所需的底 层所有依赖(基于依赖传递,当前项目也存在对应的依赖jar包正是如此,在pom.xml中引入spring-boot-starter-web依赖启动器时,就可以实现Web场景开发,而 不需要额外导入Tomcat服务器以及其他Web依赖文件等。

Spring Boot除了提供有上述介绍的Web依赖启动器外,还提供了其他许多开发场景的相关依赖, 我们可以打开Spring Boot官方文档,搜索“Starters”关键字查询场景依赖启动器

问题二总结

每个springboot start中都引入了,所需的底 层所有依赖(基于依赖传递,当前项目也存在对应的依赖jar包),这样就能在 引入一个依赖就能实现引入所需的所有依赖,方便管理,简洁明了还能去除重复的依赖。

文章内容输出来源:拉勾教育Java高薪训练营;

原文链接:https://blog.csdn.net/baidu_38652335/article/details/117899049



所属网站分类: 程序员的那点事

作者:风雨雷电

链接:http://www.pythonpdf.com/blog/article/92/52148eaa45e23cb63ad2/

来源:编程知识网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

8 0
收藏该文
已收藏

评论内容:(最多支持255个字符)