当前位置:
凯发ag旗舰厅登录网址下载 >
前端技术
> javascript
>内容正文
javascript
spring boot starters 列表 -凯发ag旗舰厅登录网址下载
凯发ag旗舰厅登录网址下载
收集整理的这篇文章主要介绍了
spring boot starters 列表
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
spring boot application starters
名称描述pomspring-boot-starter | 核心starter,包括自动配置支持,日志和yaml | pom |
spring-boot-starter-activemq | 用于使用apache activemq实现jms消息 | pom |
spring-boot-starter-amqp | 用于使用spring amqp和rabbit mq | pom |
spring-boot-starter-aop | 用于使用spring aop和aspectj实现面向切面编程 | pom |
spring-boot-starter-artemis | 使用apache artemis实现jms消息 | pom |
spring-boot-starter-batch | 对spring batch的支持 | pom |
spring-boot-starter-cache | 用于使用spring框架的缓存支持 | pom |
spring-boot-starter-cloud-connectors | 对spring cloud connectors的支持,用于简化云平台下(例如cloud foundry 和heroku)服务的连接 | pom |
spring-boot-starter-data-cassandra | 用于使用分布式数据库cassandra和spring data cassandra | pom |
spring-boot-starter-data-cassandra-reactive | 用于使用分布式数据库cassandra和spring data cassandra 的响应式支持 | pom |
spring-boot-starter-data-couchbase | 用于使用基于文档的数据库couchbase和spring data couchbase | pom |
spring-boot-starter-data-couchbase-reactive | 用于使用基于文档的数据库couchbase和spring data couchbase 的响应式支持 | pom |
spring-boot-starter-data-elasticsearch | 用于使用elasticsearch搜索,分析引擎和spring data elasticsearch | pom |
spring-boot-starter-data-jpa | 用于使用hibernate实现spring data jpa | pom |
spring-boot-starter-data-ldap | spring boot 对 spring data ldap(轻量级目录访问协议)的支持 | pom |
spring-boot-starter-data-mongodb | 用于使用基于文档的数据库mongodb和spring data mongodb | pom |
spring-boot-starter-data-mongodb-reactive | 用于使用基于文档的数据库mongodb和spring data mongodb 的响应式支持 | pom |
spring-boot-starter-data-neo4j | 用于使用图数据库neo4j和spring data neo4j | pom |
spring-boot-starter-data-redis | 用于使用spring data redis和jedis客户端操作键—值数据存储redis | pom |
spring-boot-starter-data-redis-reactive | 用于使用spring data redis和jedis客户端操作键—值数据存储redis的响应式支持 | pom |
spring-boot-starter-data-rest | 用于使用spring data rest暴露基于rest的spring data仓库 | pom |
spring-boot-starter-data-solr | 通过spring data solr使用apache solr搜索平台 | pom |
spring-boot-starter-freemarker | 用于使用freemarker模板引擎构建mvc web应用 | pom |
spring-boot-starter-groovy-templates | 用于使用groovy模板引擎构建mvc web应用 | pom |
spring-boot-starter-hateoas | 用于使用spring mvc和spring hateoas实现基于超媒体的restful web应用 | pom |
spring-boot-starter-integration | 用于使用spring integration | pom |
spring-boot-starter-jdbc | 对jdbc的支持(使用tomcat jdbc连接池) | pom |
spring-boot-starter-jersey | 用于使用jax-rs和jersey构建restful web应用,可使用spring-boot-starter-web替代 | pom |
spring-boot-starter-jooq | 用于使用jooq访问sql数据库,可使用spring-boot-starter-data-jpa或spring-boot-starter-jdbc替代 | pom |
spring-boot-starter-json | spring boot 对 json 读写支持的组建 | pom |
spring-boot-starter-jta-atomikos | 用于使用atomikos实现jta事务 | pom |
spring-boot-starter-jta-bitronix | 用于使用bitronix实现jta事务 | pom |
spring-boot-starter-jta-narayana | spring boot narayana jta starter | pom |
spring-boot-starter-mail | 用于使用java mail和spring框架email发送支持 | pom |
spring-boot-starter-mustache | 用于使用mustache模板引擎构建mvc web应用 | pom |
spring-boot-starter-quartz | 用于定时任务 quartz 的支持 | pom |
spring-boot-starter-security | 对spring security的支持 | pom |
spring-boot-starter-test | 用于测试spring boot应用,支持常用测试类库,包括junit, hamcrest和mockito | pom |
spring-boot-starter-thymeleaf | 用于使用thymeleaf模板引擎构建mvc web应用 | pom |
spring-boot-starter-validation | 用于使用hibernate validator实现java bean校验 | pom |
spring-boot-starter-web | 用于使用spring mvc构建web应用,包括restful。tomcat是默认的内嵌容器 | pom |
spring-boot-starter-web-services | 对spring web服务的支持 | pom |
spring-boot-starter-webflux | 对spring webflux服务的支持 | pom |
spring-boot-starter-websocket | 用于使用spring框架的websocket支持构建websocket应用 | pom |
spring boot 生产级 starters
名称描述pomspring-boot-starter-actuator | 用于使用spring boot的actuator,它提供了production ready功能来帮助你监控和管理应用程序 | pom |
最后,spring boot还包含一些用于排除或交换某些特定技术方面的starters:
spring boot 技术性 starters
名称描述pomspring-boot-starter-jetty | 用于使用jetty作为内嵌servlet容器,可使用spring-boot-starter-tomcat替代 | pom |
spring-boot-starter-log4j2 | 用于使用log4j2记录日志,可使用spring-boot-starter-logging代替 | pom |
spring-boot-starter-logging | 用于使用logback记录日志,默认的日志starter | pom |
spring-boot-starter-reactor-netty | 用于使用 netty 作为响应式内嵌容器 | pom |
spring-boot-starter-tomcat | 用于使用tomcat作为内嵌servlet容器,spring-boot-starter-web使用的默认servlet容器 | pom |
spring-boot-starter-undertow | 用于使用undertow作为内嵌servlet容器,可使用spring-boot-starter-tomcat替代 | pom |
转载于:https://www.cnblogs.com/wintersoft/p/9945844.html
总结
以上是凯发ag旗舰厅登录网址下载为你收集整理的spring boot starters 列表的全部内容,希望文章能够帮你解决所遇到的问题。
如果觉得凯发ag旗舰厅登录网址下载网站内容还不错,欢迎将凯发ag旗舰厅登录网址下载推荐给好友。
- 上一篇:
- 下一篇: