Spring Boot 支持的组件

名称 作用
spring-boot-starter-web Web开发支持,默认使用Toomcat8
spring-boot-starter-aop AOP开发支持,使用AspectJ
spring-boot-starter-jdbc Spring JDBC
spring-boot-starter-data-jpa JPA方式访问数据库,使用Hibernate作为JPA实现
spring-boot-starter-data-elasticsearch 集成Elasticsearch,默认访问我localhost:9200
spring-boot-starter-data-redis 集成Redis,使用JRedis,默认连接localhost:6379
spring-boot-starter-cache 缓存,支持多种缓存方式,如本地的、Redis、Ehcache等
spring-boot-devtools 应用程序快速重启的工具,提升开发体验
spring-boot-starter-data-mongodb 集成MongoDB,默认访问mongodb://localhost/test
spring-boot-starter-neo4j 集成neo4j,默认访问localhost:7474
spring-boot-starter-gemfire 集成分布式缓存
spring-boot-starter-solr 基于Apache lucene的搜索平台,默认访问http://localhost:8983/solr
spring-boot-starter-cassandra 集成Cassandra,默认访问localhost:7474
spring-boot-starter-ldap 集成ldap
spring-boot-starter-activemq 消息集成ActiveMQ支持
spring-boot-starter-amqp 消息集成AMQP协议支持,如只是RabbitMQ
spring-boot-starter-jta-atomikos 分布式事物支持,使用atomikos
spring-boot-starter-bitronix 一个开源的分布式事物支持
spring-boot-starter-test 包含JUnit、Spring Test、Hamcrest、Mockito等测试工具
spring-boot-starter-webservices webservice支持
spring-boot-starter-websocket websocket支持
spring-boot-starter-jersey REST应用和Jersey支持

猜你喜欢

转载自my.oschina.net/u/3777515/blog/1643478