Spring Boot 的各种start
新建一个springBoot项目时,你会选择很多依赖,在项目中的build.gradle中你会看见各种start,例如下边的代码:

今天就在这里列举一下各种start:
1、spring-boot-starter
Spring Boot核心starter,包含自动配置、日志、yal配置文件支持
2、spring-boot-starter-actuator
准生产特性、用于监控和管理应用
3、spring-boot-starter-remote-shell
提供基于ssh协议的监控和管理
4、spring-boot-starter-amqp
使用spring-rabbitlai zhichi AMQP
5、spring-boot-starter-aop
使用spring-aop和AspectJ支持面向切面编程
6、spring-boot-starter-batch
对Spring Batch的支持
7、spring-boot-starter-cache
对Spring Cache的抽象支持
8、spring-boot-starter-cloud-connectors
对云平台(Cloud Foundry、Heroku)提供的服务提供简化的连接方式
9、spring-boot-starter-data-elasticsearch
通过spring-data-elasticsearch对Elasticsearch支持
10、spring-boot-starter-data-gemfire
通过spring-data-gemfire对分布式存储GemFire的支持
11、spring-boot-starter-data-jpa
对JPA的支持,包含spring-data-jpa、spring-orm和hibernate
12、spring-boot-starter-mongodb
通过spring-data-mongodb,对mongodb的支持
13、spring-boot-starter-rest
通过spring-data-rest-webmvc将Spring Data repository暴露为REST形式服务
14、spring-boot-starter-solr
通过spring-data-solr对Apache Solr数据检索的支持
15、spring-boot-starter-freemarker
对Freemarker模板引擎的支持
16、spring-boot-starter-groovy-templates
通过spring-hateoas对基于HATEOAS的REST形式网络服务支持
17、spring-boot-starter-hornetq
通过HornetQ对JMS的支持
18、spring-boot-starter-integration
对系统集成框架spring-integration支持
19、spring-boot-starter-jdbc
对JDBC数据库的支持
20、spring-boot-starter-jersey
对Jersery REST形式网络服务支持
21、spring-boot-starter-jta-atomikos
通过Atomikos对分布式事务的支持
22、spring-boot-starter-mail
对javax.mail的支持
23、spring-boot-starter-mobile
对spring-mobile的支持
24、spring-boot-starter-mustache
对Mustache模板引擎的支持
25、spring-boot-starter-redis
对Redis的支持,包含spring-redis
26、spring-boot-starter-security
对spring-security的支持
27、spring-boot-starter-social-facebook
对Facebook支持
28、spring-boot-starter-social-linkedin
对linkedin支持
29、spring-boot-starter-social-twitter
对Twitter支持
30、spring-boot-starter-test
对常用测试框架JUnit、Hamcrest和Mockito的支持,包含spring-test模块
31、spring-boot-starter-thymeleaf
对Thymeleaf模板引擎的支持,包含于Spring整合的配置
32、spring-boot-starter-velocity
对Velocity模板引擎的支持
33、spring-boot-starter-web
对Web项目开发支持,包含Tomcat和Spring MVC
34、spring-boot-starter-Tomcat
Spring Boot默认Servlet容器
35、spring-boot-starter-Jetty
使用Jetty作为Servlet容器
36、spring-boot-starter-undertow
使用Undertow作为Servlet容器
37、spring-boot-starter-logging
Spring Boot默认日志框架logback
38、spring-boot-starter-log4j
支持使用Log4J日志框架
39、spring-boot-starter-websocket
对websocket的支持
40、spring-boot-starter-ws
对Spring Web Service支持
Spring Boot 的各种start的更多相关文章
- 玩转spring boot——快速开始
开发环境: IED环境:Eclipse JDK版本:1.8 maven版本:3.3.9 一.创建一个spring boot的mcv web应用程序 打开Eclipse,新建Maven项目 选择quic ...
- 【微框架】之一:从零开始,轻松搞定SpringCloud微框架系列--开山篇(spring boot 小demo)
Spring顶级框架有众多,那么接下的篇幅,我将重点讲解SpringCloud微框架的实现 Spring 顶级项目,包含众多,我们重点学习一下,SpringCloud项目以及SpringBoot项目 ...
- 玩转spring boot——开篇
很久没写博客了,而这一转眼就是7年.这段时间并不是我没学习东西,而是园友们的技术提高的非常快,这反而让我不知道该写些什么.我做程序已经有十几年之久了,可以说是彻彻底底的“程序老炮”,至于技术怎么样?我 ...
- 玩转spring boot——结合redis
一.准备工作 下载redis的windows版zip包:https://github.com/MSOpenTech/redis/releases 运行redis-server.exe程序 出现黑色窗口 ...
- 玩转spring boot——AOP与表单验证
AOP在大多数的情况下的应用场景是:日志和验证.至于AOP的理论知识我就不做赘述.而AOP的通知类型有好几种,今天的例子我只选一个有代表意义的“环绕通知”来演示. 一.AOP入门 修改“pom.xml ...
- 玩转spring boot——结合JPA入门
参考官方例子:https://spring.io/guides/gs/accessing-data-jpa/ 接着上篇内容 一.小试牛刀 创建maven项目后,修改pom.xml文件 <proj ...
- 玩转spring boot——结合JPA事务
接着上篇 一.准备工作 修改pom.xml文件 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=&q ...
- 玩转spring boot——结合AngularJs和JDBC
参考官方例子:http://spring.io/guides/gs/relational-data-access/ 一.项目准备 在建立mysql数据库后新建表“t_order” ; -- ----- ...
- 玩转spring boot——结合jQuery和AngularJs
在上篇的基础上 准备工作: 修改pom.xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=&q ...
- 玩转spring boot——MVC应用
如何快速搭建一个MCV程序? 参照spring官方例子:https://spring.io/guides/gs/serving-web-content/ 一.spring mvc结合thymeleaf ...
随机推荐
- 写一个比较全的进制转换函数--ic
//写一个比较全的进制转换函数-----未完成 #include <stdio.h> //D进制转换后 (比如10-2进制) 结果可能会很大 需要很长的字符串来存 #include < ...
- centos v7.0解决乱码
[root@localhost ~]# ll 鎬荤敤閲4-rw-------. 1 root root 1045 8鏈 24 21:17 anaconda-ks.cfg [root@localhost ...
- 【神经网络与深度学习】Caffe训练执行时爆出的Check failed: registry.count(t ype) == 1 (0 vs. 1) Unknown layer type
自己建立一个工程,希望调用libcaffe.lib ,各种配置好,也能成功编译,但是运行就会遇到报错 F0519 14:54:12.494139 14504 layer_factory.hpp:77] ...
- CF486B OR in Matrix(构造+思维)
CF486B 一道有趣的思维题 由于or的性质可知只要a[i][j]为1那么b中第i行,第j列将都变成1 相反的,如果b[i][j]是0那么a中第i行,第j列都必须是0 根据第二个性质我们可以构造出a ...
- bi的tableau
参考: 官网: https://help.tableau.com/current/server-linux/zh-cn/get_started_server.htm 可视化分析最佳做法: 实用指南 h ...
- sql server CDC报错:超出存储过程、函数、触发器的最大嵌套层数(最大层为32)
sys.sp_MScdc_capture_job RAISERROR(22801, 10, -1) --原本 go sys.sp_MScdc_capture_job; go --修改后 ...
- 快速安装create-react-app脚手架
create-react-app搭建react项目:https://blog.csdn.net/weixin_41077029/article/details/82622106 快速安装create- ...
- 洛谷 P3368 树状数组 题解
题面 本题随便看两眼就知道该题满足了优美的查分性质: 对于在区间[x,y]内操作时,应该将查分数组的第x项和第y+1项进行相反操作: 询问答案时,问第i个数的值就是查分数组的前i项和: 暴力+玄学卡常 ...
- git reset –mixed –soft –hard命令解释。
直接看官方的解释. 其中HEAD代表版本库,index代表暂存区,另外还有一个我们增删改代码的工作区.所以官方解释翻译过来就是: --hard : 回退版本库,暂存区,工作区.(因此我们修改过的代码就 ...
- google浏览器切换成中文
新浪下载地址:http://down.tech.sina.com.cn/content/40975.html 默认字体好像是西班牙语 1.浏览器地址chrome://settings/language ...