我爱编程IT技术篇Spring Boot

Spring Boot 的各种start

2017-01-18  本文已影响0人  奋斗的白

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

dependencies {
    compile('org.springframework.boot:spring-boot-starter-actuator')
    compile('org.springframework.boot:spring-boot-starter-aop')
    compile('org.springframework.boot:spring-boot-starter-data-jpa')
    compile('org.springframework.boot:spring-boot-starter-jdbc')
    compile('org.springframework.boot:spring-boot-starter-mail')
    compile('org.springframework.boot:spring-boot-starter-mobile')
    compile('org.springframework.boot:spring-boot-starter-security')
    compile('org.springframework.boot:spring-boot-starter-social-linkedin')
    compile('org.springframework.boot:spring-boot-starter-thymeleaf')
    compile('org.springframework.boot:spring-boot-starter-web')
    compile('org.springframework.boot:spring-boot-starter-web-services')
    runtime('mysql:mysql-connector-java')
    testCompile('org.springframework.boot:spring-boot-starter-test')
}
今天就在这里列举一下各种start:

spring-boot-starter
Spring Boot核心starter,包含自动配置、日志、yal配置文件支持
spring-boot-starter-actuator
准生产特性、用于监控和管理应用
spring-boot-starter-remote-shell
提供基于ssh协议的监控和管理
spring-boot-starter-amqp
使用spring-rabbitlai zhichi AMQP
spring-boot-starter-aop
使用spring-aop和AspectJ支持面向切面编程
spring-boot-starter-batch
对Spring Batch的支持
spring-boot-starter-cache
对Spring Cache的抽象支持
spring-boot-starter-cloud-connectors
对云平台(Cloud Foundry、Heroku)提供的服务提供简化的连接方式
spring-boot-starter-data-elasticsearch
通过spring-data-elasticsearch对Elasticsearch支持
spring-boot-starter-data-gemfire
通过spring-data-gemfire对分布式存储GemFire的支持
spring-boot-starter-data-jpa
对JPA的支持,包含spring-data-jpa、spring-orm和hibernate
spring-boot-starter-mongodb
通过spring-data-mongodb,对mongodb的支持
spring-boot-starter-rest
通过spring-data-rest-webmvc将Spring Data repository暴露为REST形式服务
spring-boot-starter-solr
通过spring-data-solr对Apache Solr数据检索的支持
spring-boot-starter-freemarker
对Freemarker模板引擎的支持
spring-boot-starter-groovy-templates
通过spring-hateoas对基于HATEOAS的REST形式网络服务支持
spring-boot-starter-hornetq
通过HornetQ对JMS的支持
spring-boot-starter-integration
对系统集成框架spring-integration支持
spring-boot-starter-jdbc
对JDBC数据库的支持
spring-boot-starter-jersey
对Jersery REST形式网络服务支持
spring-boot-starter-jta-atomikos
通过Atomikos对分布式事务的支持
spring-boot-starter-mail
对javax.mail的支持
spring-boot-starter-mobile
对spring-mobile的支持
spring-boot-starter-mustache
对Mustache模板引擎的支持
spring-boot-starter-redis
对Redis的支持,包含spring-redis
spring-boot-starter-security
对spring-security的支持
spring-boot-starter-social-facebook
对Facebook支持
spring-boot-starter-social-linkedin
对linkedin支持
spring-boot-starter-social-twitter
对Twitter支持
spring-boot-starter-test
对常用测试框架JUnit、Hamcrest和Mockito的支持,包含spring-test模块
spring-boot-starter-thymeleaf
对Thymeleaf模板引擎的支持,包含于Spring整合的配置
spring-boot-starter-velocity
对Velocity模板引擎的支持
spring-boot-starter-web
对Web项目开发支持,包含Tomcat和Spring MVC
spring-boot-starter-Tomcat
Spring Boot默认Servlet容器
spring-boot-starter-Jetty
使用Jetty作为Servlet容器
spring-boot-starter-undertow
使用Undertow作为Servlet容器
spring-boot-starter-logging
Spring Boot默认日志框架logback
spring-boot-starter-log4j
支持使用Log4J日志框架
spring-boot-starter-websocket
对websocket的支持
spring-boot-starter-ws
对Spring Web Service支持

上一篇下一篇

猜你喜欢

热点阅读