Spring Boot的每个模块包详解,具体如下

1、spring-boot-starter
这是Spring Boot的核心启动器,包含了自动配置、日志和YAML。

2、spring-boot-starter-actuator
帮助监控和管理应用。

3、spring-boot-starter-amqp
通过spring-rabbit来支持AMQP协议(Advanced Message Queuing Protocol)。

4、spring-boot-starter-aop
支持面向方面的编程即AOP,包括spring-aop和AspectJ。

5、spring-boot-starter-artemis
通过Apache Artemis支持JMS的API(Java Message Service API)。

6、spring-boot-starter-batch
支持Spring Batch,包括HSQLDB数据库。

7、spring-boot-starter-cache
支持Spring的Cache抽象。

8、spring-boot-starter-cloud-connectors
支持Spring Cloud Connectors,简化了在像Cloud Foundry或Heroku这样的云平台上连接服务。

9、spring-boot-starter-data-elasticsearch
支持ElasticSearch搜索和分析引擎,包括spring-data-elasticsearch。

10、spring-boot-starter-data-gemfire
支持GemFire分布式数据存储,包括spring-data-gemfire。

11、spring-boot-starter-data-jpa
支持JPA(Java Persistence API),包括spring-data-jpa、spring-orm、Hibernate。

12、spring-boot-starter-data-mongodb
支持MongoDB数据,包括spring-data-mongodb。

13、spring-boot-starter-data-rest
通过spring-data-rest-webmvc,支持通过REST暴露Spring Data数据仓库。

14、spring-boot-starter-data-solr
支持Apache Solr搜索平台,包括spring-data-solr。

15、spring-boot-starter-freemarker
支持FreeMarker模板引擎。

16、spring-boot-starter-groovy-templates
支持Groovy模板引擎。

17、spring-boot-starter-hateoas
通过spring-hateoas支持基于HATEOAS的RESTful Web服务。

18、spring-boot-starter-hornetq
通过HornetQ支持JMS。

19、spring-boot-starter-integration
支持通用的spring-integration模块。

20、spring-boot-starter-jdbc
支持JDBC数据库。

21、spring-boot-starter-jersey
支持Jersey RESTful Web服务框架。

22、spring-boot-starter-jta-atomikos
通过Atomikos支持JTA分布式事务处理。

23、spring-boot-starter-jta-bitronix
通过Bitronix支持JTA分布式事务处理。

24、spring-boot-starter-mail
支持javax.mail模块。

25、spring-boot-starter-mobile
支持spring-mobile。

26、spring-boot-starter-mustache
支持Mustache模板引擎。

27、spring-boot-starter-redis
支持Redis键值存储数据库,包括spring-redis。

28、spring-boot-starter-security
支持spring-security。

29、spring-boot-starter-social-facebook
支持spring-social-facebook

30、spring-boot-starter-social-linkedin
支持pring-social-linkedin

31、spring-boot-starter-social-twitter
支持pring-social-twitter

32、spring-boot-starter-test
支持常规的测试依赖,包括JUnit、Hamcrest、Mockito以及spring-test模块。

33、spring-boot-starter-thymeleaf
支持Thymeleaf模板引擎,包括与Spring的集成。

34、spring-boot-starter-velocity
支持Velocity模板引擎。

35、spring-boot-starter-web
S支持全栈式Web开发,包括Tomcat和spring-webmvc。

36、spring-boot-starter-websocket
支持WebSocket开发。

37、spring-boot-starter-ws
支持Spring Web Services。

38、spring-boot-starter-actuator
增加了面向产品上线相关的功能,比如测量和监控。

39、spring-boot-starter-remote-shell
增加了远程ssh shell的支持。

40、spring-boot-starter-jetty
引入了Jetty HTTP引擎(用于替换Tomcat)。

41、spring-boot-starter-log4j
支持Log4J日志框架。

42、spring-boot-starter-logging
引入了Spring Boot默认的日志框架Logback。

43、spring-boot-starter-tomcat
引入了Spring Boot默认的HTTP引擎Tomcat。

44、spring-boot-starter-undertow
引入了Undertow HTTP引擎(用于替换Tomcat)。

Spring Boot的每个模块包详解相关推荐

  1. Spring Boot 2.0 的配置详解(图文教程)

    本文来自作者 泥瓦匠 @ bysocket.com 在 GitChat 上分享 「Spring Boot 2.0 的配置详解(图文教程)」 编辑 | 哈比 Spring Boot 配置,包括自动配置和 ...

  2. spring boot模板引擎thymleaf用法详解

    spring boot模板引擎thymleaf用法详解 Spring-boot支持FreeMarker.Thymeleaf.jsp.veocity 但是对freemarker和thymeleaf的支持 ...

  3. spring boot(四):thymeleaf使用详解

    spring boot(四):thymeleaf使用详解 在上篇文章springboot(二):web综合开发中简单介绍了一下thymeleaf,这篇文章将更加全面详细的介绍thymeleaf的使用. ...

  4. Spring Boot 使用 Druid 连接池详解

    Spring Boot 使用 Druid 连接池详解 Alibaba Druid 是一个 JDBC 组件库,包含数据库连接池.SQL Parser 等组件,被大量业务和技术产品使用或集成,经历过严苛的 ...

  5. Spring Boot 配置加载顺序详解

    使用 Spring Boot 会涉及到各种各样的配置,如开发.测试.线上就至少 3 套配置信息了.Spring Boot 可以轻松的帮助我们使用相同的代码就能使开发.测试.线上环境使用不同的配置. 在 ...

  6. (转)Spring Boot(四):Thymeleaf 使用详解

    http://www.ityouknow.com/springboot/2016/05/01/spring-boot-thymeleaf.html 在上篇文章Spring Boot (二):Web 综 ...

  7. spring boot 源码解析43-JmxMetricWriter详解

    前言 本文我们来介绍JmxMetricWriter, JmxMetricWriter是依赖于spring jmx 来实现的. 因此本文的开头先介绍一下spring boot 与jmx的集成,然后分析J ...

  8. Spring Boot中Jackson ObjectMapper应用详解

    Spring Boot支持与三种JSON mapping库集成:Gson.Jackson和JSON-B.Jackson是首选和默认的. Jackson是spring-boot-starter-json ...

  9. 精通Spring Boot——第三篇:详解WebMvcConfigurer接口

    2019独角兽企业重金招聘Python工程师标准>>> SpringBoot 确实为我们做了很多事情, 但有时候我们想要自己定义一些Handler,Interceptor,ViewR ...

最新文章

  1. C++中关于[]静态数组和new分配的动态数组的区别分析
  2. Java项目:智能制造生产管理平台(java+SSM+mysql+Maven+Easyui+JSP)
  3. Little Sub and Sequence
  4. 图解 Python 深拷贝和浅拷贝
  5. vscode 快速调到定义处_vim技巧:在程序代码中快速跳转,在文件内跳转到变量定义处...
  6. 后来朋友选了伪原创工具下载这个词
  7. BI和报表等于数据分析?终于有人讲清楚了它们的区别
  8. 以WinGrub 引导安装Fedora 4.0 为例,详述用WinGrub来引导Linux的安装
  9. 快速排序(java版)
  10. 利用图片指纹检测高相似度图片--相似图片搜索的原理
  11. 大一c语言程序设计计算器,C语言程序设计-课程设计《计算器程序》.docx
  12. QT24A01 TNK以太网变压器
  13. android 矢量粒子动画,Android碎裂的粒子效果
  14. 游戏HTML翻翻乐,大班益智游戏翻翻乐优秀教案
  15. Python 数据获取(四)—— BeautifulSoup获取小说内容
  16. 2019年中科院信工所夏令营考核内容
  17. 荣耀50手机系列正式发布,售价2399元起,主要竞争对手瞄准苹果
  18. php解析手机号 归属地,PHP通过API获取手机号码归属地,api手机号码_PHP教程
  19. 文字图片滚动scrollbox插件
  20. AspNet5.ENU.RC1安装错误:0x80072f0d - 未指定的错误

热门文章

  1. nodejs基础 -- web模块
  2. 使用MDT2012部署WindowsLinux操作系统(4)
  3. 基于三层结构的CRM系统(Agent X)的设计和开发
  4. 问题五:C++中const是干嘛用的
  5. 运算符——Python
  6. 大数据治理会遇到哪些难题
  7. 大数据给企业带来的好处有哪些
  8. 大数据的分析手段有哪几种
  9. java 多项式拟合最多的项数_MATLAB绘制带置信区间的拟合曲线
  10. mysql 的hash和b tree_mysql索引hash索引和b-tree索引的区别