Spring Boot参考指南
  • Introduction
  • I. Spring Boot文档
    • 1. 关于本文档
    • 2. 获取帮助
    • 3. 第一步
    • 4. 使用Spring Boot
    • 5. 了解Spring Boot特性
    • 6. 迁移到生产环境
    • 7. 高级主题
  • II. 开始
    • 8. Spring Boot介绍
    • 9. 系统要求
      • 9.1. Servlet容器
    • 10. Spring Boot安装
      • 10.1. 为Java开发者准备的安装指南
        • 10.1.1. Maven安装
        • 10.1.2. Gradle安装
      • 10.2. Spring Boot CLI安装
        • 10.2.1. 手动安装
        • 10.2.2. 使用SDKMAN进行安装
        • 10.2.3. 使用OSX Homebrew进行安装
        • 10.2.4. 使用MacPorts进行安装
        • 10.2.5. 命令行实现
        • 10.2.6. Spring CLI示例快速入门
      • 10.3. 从Spring Boot早期版本升级
    • 11. 开发你的第一个Spring Boot应用
      • 11.1. 创建POM
      • 11.2. 添加classpath依赖
      • 11.3. 编写代码
        • 11.3.1. @RestController和@RequestMapping注解
        • 11.3.2. @EnableAutoConfiguration注解
        • 11.3.3. main方法
      • 11.4. 运行示例
      • 11.5. 创建一个可执行jar
      • 12. 接下来阅读什么
  • III. 使用Spring Boot
    • 13. 构建系统
      • 13.1. 依赖管理
      • 13.2. Maven
        • 13.2.1. 继承starter parent
        • 13.2.2. 在不使用parent POM的情况下玩转Spring Boot
        • 13.2.3. 使用Spring Boot Maven插件
      • 13.3. Gradle
      • 13.4. Ant
      • 13.5. Starters
    • 14. 组织你的代码
      • 14.1. 使用"default"包
      • 14.2. 放置应用的main类
    • 15. 配置类
      • 15.1. 导入其他配置类
      • 15.2. 导入XML配置
    • 16. 自动配置
      • 16.1. 逐步替换自动配置
      • 16.2. 禁用特定的自动配置类
    • 17. Spring Beans和依赖注入
    • 18. 使用@SpringBootApplication注解
    • 19. 运行应用程序
      • 19.1. 从IDE中运行
      • 19.2. 作为一个打包后的应用运行
      • 19.3. 使用Maven插件运行
      • 19.4. 使用Gradle插件运行
      • 19.5. 热交换
    • 20. 开发者工具
      • 20.1. 默认属性
      • 20.2. 自动重启
        • 20.2.1. 在状况评估里记录更改
        • 20.2.2. 排除资源
        • 20.2.3. 查看其他路径
        • 20.2.4. 禁用重启
        • 20.2.5. 使用触发器文件
        • 20.2.6. 自定义restart类加载器
        • 20.2.7. 已知限制
      • 20.3. LiveReload
      • 20.4. 全局设置
      • 20.5. 远程应用
        • 20.5.1. 运行远程客户端应用
        • 20.5.2. 远程更新
    • 21. 打包用于生产的应用
    • 22. 接下来阅读什么
  • IV. Spring Boot特性
    • 23. SpringApplication
      • 23.1. 启动失败
      • 23.2. 自定义Banner
      • 23.3. 自定义SpringApplication
      • 23.4. 流式构建API
      • 23.5. 应用事件和监听器
      • 23.6. Web环境
      • 23.7. 访问应用参数
      • 23.8. 使用ApplicationRunner或CommandLineRunner
      • 23.9. 应用退出
      • 23.10. Admin特性
    • 24.外化配置
      • 24.1. 配置随机值
      • 24.2. 访问命令行属性
      • 24.3. 应用属性文件
      • 24.4. Profile-specific属性
      • 24.5. 属性占位符
      • 24.6. 使用YAML代替Properties
        • 24.6.1. 加载YAML
        • 24.6.2. 在Spring环境中使用YAML暴露属性
        • 24.6.3. Multi-profile YAML文档
        • 24.6.4. YAML缺点
        • 24.6.5. 合并YAML列表
      • 24.7. 类型安全的配置属性
        • 24.7.1. 第三方配置
        • 24.7.2. Relaxed绑定
        • 24.7.3. 属性转换
        • 24.7.4. @ConfigurationProperties校验
        • 24.7.5. @ConfigurationProperties vs @Value
    • 25. Profiles
      • 25.1. 添加激活的profiles
      • 25.2.以编程方式设置profiles
      • 25.3. Profile-specific配置文件
    • 26. 日志
      • 26.1. 日志格式
      • 26.2. 控制台输出
        • 26.2.1. Color-coded输出
      • 26.3. 文件输出
      • 26.4. 日志级别
      • 26.5. 自定义日志配置
      • 26.6. Logback扩展
        • 26.6.1. Profile-specific配置
        • 26.6.2. Environment属性
    • 27. 开发Web应用
      • 27.1. Spring Web MVC框架
        • 27.1.1. Spring MVC自动配置
        • 27.1.2. HttpMessageConverters
        • 27.1.3. 自定义JSON序列化器和反序列化器
        • 27.1.4. MessageCodesResolver
        • 27.1.5. 静态内容
        • 27.1.6. 欢迎页
        • 27.1.7. 定制网站图标
        • 27.1.8. 路径匹配与内容协商
        • 27.1.9. ConfigurableWebBindingInitializer
        • 27.1.10. 模板引擎
        • 27.1.11. 错误处理
        • 27.1.12. Spring HATEOAS
        • 27.1.13. CORS支持
      • 27.2 Spring WebFlux框架
        • 27.2.1 Spring WebFlux自动配置
        • 27.2.2 HTTP编解码器——HttpMessageReaders与HttpMessageWriters
        • 27.2.3 静态内容
        • 27.2.4 模板引擎
        • 27.2.5 错误处理
        • 27.2.6 网络过滤器
      • 27.3. JAX-RS和Jersey
      • 27.4 内嵌servlet容器支持
        • 27.4.1 Servlets、Filters和listeners
        • 27.4.2 Servlet上下文初始化
        • 27.4.3 ServletWebServerApplicationContext
        • 27.4.4 自定义内嵌servlet容器
        • 27.4.5 JSP的限制
    • 28. 安全
      • 28.1 MVC安全
      • 28.2 WebFlux安全
      • 28.3 OAuth2
        • 28.3.1 客户端
      • 28.4 执行器安全
        • 28.4.1 跨站请求伪造保护
    • 29. 使用SQL数据库
      • 29.1. 配置数据源
        • 29.1.1. 对内嵌数据库的支持
        • 29.1.2. 连接生产环境数据库
        • 29.1.3. 连接JNDI数据库
      • 29.2. 使用JdbcTemplate
      • 29.3. JPA和Spring Data
        • 29.3.1. 实体类
        • 29.3.2. Spring Data JPA仓库
        • 29.3.3. 创建和删除JPA数据库
        • 29.3.4. 在视图中打开实体管理器
      • 29.4 使用H2的web控制台
        • 29.4.1 改变H2控制台路径
      • 29.5 使用jOOQ
        • 29.5.1 代码生成
        • 29.5.2 使用DSLContext
        • 29.5.3 jOOQ SQL方言
        • 29.5.4 自定义jOOQ
    • 30. 使用NoSQL技术
      • 30.1. Redis
        • 30.1.1. 连接Redis
      • 30.2. MongoDB
        • 30.2.1. 连接MongoDB数据库
        • 30.2.2. MongoDBTemplate
        • 30.2.3. Spring Data MongoDB仓库
        • 30.2.4 内嵌的Mongo
      • 30.3 Neo4j
        • 30.3.1 连接Neo4j数据库
        • 30.3.2 使用内嵌模式
        • 30.3.3 Neo4jSession
        • 30.3.4 Spring Data Neo4j仓库
        • 30.3.5 仓库示例
      • 30.4 Gemfire
      • 30.5 Solr
        • 30.5.1 连接Solr
        • 30.5.2 Spring Data Solr仓库
      • 30.6 Elasticsearch
        • 30.6.1 使用Jest连接Elasticsearch
        • 30.6.2 使用Spring Data连接Elasticsearch
        • 30.6.3 Spring Data Elasticseach仓库
      • 30.7 Cassandra
        • 30.7.1 连接Cassandra
        • 30.7.2 Spring Data Cassandra仓库
      • 30.8 Couchbase
        • 30.8.1 连接Couchbase
        • 30.8.2 Spring Data Couchbase仓库
      • 30.9 LDAP
        • 30.9.1 连接LDAP服务器
        • 30.9.2 Spring Data LDAP仓库
        • 30.9.3 嵌入式内存中LDAP服务器
      • 30.10 InfluxDB
        • 30.10.1 连接InfluxDB
    • 31. 缓存
      • 31.1 支持的缓存提供商
        • 31.1.1 Generic
        • 31.1.2 JCache (JSR-107)
        • 31.1.3 EhCache 2.x
        • 31.1.4 Hazelcast
        • 31.1.5 Infinispan
        • 31.1.6 Couchbase
        • 31.1.7 Redis
        • 31.1.8 Caffeine
        • 31.1.9 Simple
        • 31.1.10 None
    • 32. 消息
      • 32.1. JMS
        • 32.1.1 ActiveQ支持
        • 32.1.2 Artemis支持
        • 32.1.3 使用JNDI ConnectionFactory
        • 32.1.4 发送消息
        • 32.1.5 接收消息
      • 32.2 AMQP
        • 32.2.1 RabbitMQ支持
        • 32.2.2 发送消息
        • 32.2.3 接收消息
      • 32.3 Apache Kafka支持
        • 32.3.1 发送消息
        • 32.3.2 接收消息
        • 32.3.3 其它的Kafka属性
    • 33. 使用RestTemplate调用REST服务
      • 33.1 自定义RestTemplate
    • 34. 使用WebClient调用REST服务
      • 34.1 自定义WebClient
    • 35. 验证
    • 36. 发送邮件
    • 37. 使用JTA处理分布式事务
      • 37.1 使用Atomikos事务管理器
      • 37.2 使用Bitronix事务管理器
      • 37.3 使用Narayana事务管理器
      • 37.4 使用J2EE管理的事务管理器
      • 37.5 混合XA和non-XA的JMS连接
      • 37.6 支持可替代的内嵌事务管理器
    • 38. Hazelcast
    • 39. Quartz调度器
    • 40. Spring集成
    • 41. Spring Session
    • 42. 基于JMX的监控和管理
    • 43. 测试
      • 43.1 测试作用域依赖
      • 43.2 测试Spring应用
      • 43.3 测试Spring Boot应用
        • 43.3.1 检测网络应用类型
        • 43.3.2 检测测试配置
        • 43.3.3 排除测试配置
        • 43.3.4 使用运行的服务器测试
        • 43.3.5 模拟和监视bean
        • 43.3.6 自动配置测试
        • 43.3.7 自动配置的JSON测试
        • 43.3.8 自动配置的Spring MVC测试
        • 43.3.9 自动配置的Spring WebFlux测试
        • 43.3.10 自动配置的Data JPA测试
        • 43.3.11 自动配置的JDBC测试
        • 43.3.12 自动配置的jOOQ测试
        • 43.3.13 自动配置的Data MongoDB测试
        • 43.3.14 自动配置的Data Neo4j测试
        • 43.3.15 自动配置的Data Redis测试
        • 43.3.16 自动配置的Data LDAP测试
        • 43.3.17 自动配置的REST客户端
        • 43.3.18 自动配置的Spring REST Docs测试
        • 43.3.19 用户配置与切片
        • 43.3.20 使用Spock测试Spring Boot应用
      • 43.4 测试工具类
        • 43.4.1 ConfigFileApplicationContextInitializer
        • 43.4.2 EnvironmentTestUtils
        • 43.4.3 OutputCapture
        • 43.4.4 TestRestTemplate
    • 44. WebSockets
    • 45. Web Services
    • 46. 创建自己的自动配置
      • 46.1 理解自动配置的bean
      • 46.2 定位自动配置候选者
      • 46.3 条件注解
        • 46.3.1 Class条件
        • 46.3.2 Bean条件
        • 46.3.3 Property条件
        • 46.3.4 Resource条件
        • 46.3.5 Web Application条件
        • 46.3.6 SpEL表达式条件
      • 46.4 测试你的自动配置
        • 46.4.1 模拟网络上下文
        • 46.4.2 覆盖类路径
      • 46.5 创建自己的starter
        • 46.5.1 命名
        • 46.5.2 自动配置模块
        • 46.5.3 Starter模块
    • 47. Kotlin支持
      • 47.1 要求
      • 47.2 空安全
      • 47.3 Kotlin API
        • 47.3.1 runApplication
        • 47.3.2 扩展
      • 47.4 依赖管理
      • 47.5 @ConfigurationProperties
      • 47.6 测试
      • 47.7 资源
        • 47.7.1 延伸阅读
        • 47.7.2 示例
    • 48. 接下来阅读什么
  • V. Spring Boot执行器:用于生产环境的特性
    • 49. 开启用于生产环境的特性
    • 50. 端点
      • 50.1 启用端点
      • 50.2 暴露端点
      • 50.3 加密HTTP端点
      • 50.4 配置端点
      • 50.5 执行器网络端点的超媒体支持
      • 50.6 执行器网络端点路径
      • 50.7 CORS支持
      • 50.8 实现自定义端点
        • 50.8.1 接收输入
        • 50.8.2 自定义网络端点
        • 50.8.3 Servlet端点
        • 50.8.4 Controller端点
      • 50.9 健康信息
        • 50.9.1 自动配置的HealthIndicator
        • 50.9.2 编写自定义HealthIndicator
        • 50.9.3 响应式的健康指示器
        • 50.9.4 自动配置的ReactiveHealthIndicators
      • 50.10 应用信息
        • 50.10.1 自动配置的InfoContributors
        • 50.10.2 自定义应用信息
        • 50.10.3 Git提交信息
        • 50.10.4 构建信息
        • 50.10.5 编写自定义的InfoContributor
    • 51. 基于HTTP的监控和管理
      • 51.1 自定义管理端点路径
      • 51.2 自定义管理服务器端口
      • 51.3 配置管理相关的SSL
      • 51.4 自定义管理服务器地址
      • 51.5 禁用HTTP端点
    • 52. 基于JMX的监控和管理
      • 52.1 自定义MBean名称
      • 52.2 禁用JMX端点
      • 52.3 使用Jolokia通过HTTP实现JMX远程管理
        • 52.3.1 自定义Jolokia
        • 52.3.2 禁用Jolokia
    • 53. 记录器
      • 53.1 配置记录器
    • 54. 度量指标
      • 54.1 入门指南
      • 54.2 支持的监控系统
        • 54.2.1 Atlas
        • 54.2.2 Datadog
        • 54.2.3 Ganglia
        • 54.2.4 Graphite
        • 54.2.5 Influx
        • 54.2.6 JMX
        • 54.2.7 New Relic
        • 54.2.8 Prometheus
        • 54.2.9 SignalFx
        • 54.2.10 Simple
        • 54.2.11 StatsD
        • 54.2.12 Wavefront
      • 54.3 支持的指标
        • 54.3.1 Spring MVC指标
        • 54.3.2 Spring WebFlux指标
        • 54.3.3 RestTemplate指标
        • 54.3.4 Spring集成指标
        • 54.3.5 缓存指标
        • 54.3.6 数据源指标
        • 54.3.7 RabbitMQ指标
      • 54.4 注册自定义指标
      • 54.5 自定义单个指标
        • 54.5.1 Per-meter属性
      • 54.6 度量端点
    • 55. 审计
    • 56. HTTP追踪
      • 56.1 自定义HTTP追踪
    • 57. 进程监控
      • 57.1 扩展配置
      • 57.2 以编程方式
    • 58. Cloud Foundry支持
      • 58.1 禁用扩展的Cloud Foundry执行器支持
      • 58.2 Cloud Foundry自签名证书
      • 58.3 自定义上下文路径
    • 59. 接下来阅读什么
  • VI. 部署到云端
    • 60. 部署到云端
      • 60.1 Cloud Foundry
        • 60.1.1 绑定服务
      • 60.2 Heroku
      • 60.3 Openshift
      • 60.4 亚马逊网络服务(AWS)
        • 60.4.1 AWS Elastic Beanstalk
        • 60.4.2 总结
      • 60.5 Boxfuse和亚马逊网络服务
      • 60.6 Google Cloud
    • 61. 安装Spring Boot应用
      • 61.1 支持的操作系统
      • 61.2 Unix/Linux服务
        • 61.2.1 安装为init.d服务(System V)
        • 61.2.2 安装为Systemd服务
        • 61.2.3 自定义启动脚本
      • 61.3 Microsoft Windows服务
    • 62. 接下来阅读什么
  • VII. Spring Boot CLI
    • 63. 安装CLI
    • 64. 使用CLI
      • 64.1 使用CLI运行应用
        • 64.1.1 推断"grab"依赖
        • 64.1.2 推断"grab"坐标
        • 64.1.3 默认import语句
        • 64.1.4 自动创建main方法
        • 64.1.5 自定义依赖管理
      • 64.2 多源文件应用
      • 64.3 应用打包
      • 64.4 初始化新工程
      • 64.5 使用内嵌shell
      • 64.6 为CLI添加扩展
    • 65. 使用Groovy beans DSL开发应用
    • 66. 使用settings.xml配置CLI
    • 67. 接下来阅读什么
  • VIII. 构建工具插件
    • 68. Spring Boot Maven插件
      • 68.1 包含该插件
      • 68.2 打包可执行jar和war文件
    • 69. Spring Boot Gradle插件
    • 70. Spring Boot AntLib模块
      • 70.1. Spring Boot Ant任务
        • 70.1.1. spring-boot:exejar
        • 70.1.2. 示例
      • 70.2. spring-boot:findmainclass
        • 70.2.1. 示例
    • 71. 对其他构建系统的支持
      • 71.1. 重新打包存档
      • 71.2. 内嵌库
      • 71.3. 查找main类
      • 71.4. repackage实现示例
    • 72. 接下来阅读什么
  • IX. How-to指南
    • 73. Spring Boot应用
      • 73.1 创建自己的FailureAnalyzer
      • 73.2 解决自动配置问题
      • 73.3 启动前自定义Environment或ApplicationContext
      • 73.4 构建ApplicationContext层次结构
      • 73.5 创建no-web应用
    • 74. 属性与配置
      • 74.1. 运行时暴露属性
        • 74.1.1. 使用Maven自动暴露属性
        • 74.1.2. 使用Gradle自动暴露属性
      • 74.2. 外部化SpringApplication配置
      • 74.3 改变应用程序外部配置文件的位置
      • 74.4 使用“短”命令行参数
      • 74.5 使用YAML配置外部属性
      • 74.6 设置生效的Spring profiles
      • 74.7 根据环境改变配置
      • 74.8 发现外部属性的内置选项
    • 75. 内嵌网络服务器
      • 75.1 使用另外的网络服务器
      • 75.2 配置Jetty
      • 75.3 为应用添加Servlet、Filter或Listener
        • 75.3.1 使用Spring bean添加Servlet、Filter或Listener
        • 75.3.2 使用类路径扫描添加Servlet、Filter和Listener
      • 75.4 改变HTTP端口
      • 75.5 使用随机未分配的HTTP端口
      • 75.6 在运行时发现HTTP端口
      • 75.7 配置SSL
      • 75.8 配置HTTP/2
        • 75.8.1 HTTP/2与Undertow
        • 75.8.2 HTTP/2与Jetty
        • 75.8.3 HTTP/2与Tomcat
      • 75.9 配置访问日志
      • 75.10 在前端代理服务器后运行
        • 75.10.1 自定义Tomcat代理配置
      • 75.11 配置Tomcat
      • 75.12 启用Tomcat的多连接器
      • 75.13 使用Tomcat的LegacyCookieProcessor
      • 75.14 配置Undertow
      • 75.15 启用Undertow的多监听器
      • 75.16 使用@ServerEndpoint创建WebSocket端点
      • 75.17 启用HTTP响应压缩
    • 76. Spring MVC
      • 76.1 编写JSON REST服务
      • 76.2 编写XML REST服务
      • 76.3 自定义Jackson ObjectMapper
      • 76.4 自定义@ResponseBody渲染
      • 76.5 处理Multipart文件上传
      • 76.6 关闭Spring MVC DispatcherServlet
      • 76.7 关闭默认的MVC配置
      • 76.8 自定义ViewResolvers
    • 77. HTTP客户端
      • 77.1 配置RestTemplate使用代理
    • 78. 日志
      • 78.1 配置Logback
        • 78.1.1 配置logback只输出到文件
      • 78.2 配置Log4j
        • 78.2.1 使用YAML或JSON配置Log4j2
    • 79. 数据访问
      • 79.1 配置自定义的数据源
      • 79.2 配置两个数据源
      • 79.3 使用Spring Data仓库
      • 79.4 从Spring配置分离@Entity定义
      • 79.5 配置JPA属性
      • 79.6 配置Hibernate命名策略
      • 79.7 使用自定义EntityManagerFactory
      • 79.8 使用两个EntityManagers
      • 79.9 使用传统的persistence.xml文件
      • 79.10 使用Spring Data JPA和Mongo仓库
      • 79.11 将Spring Data仓库暴露为REST端点
      • 79.12 配置JPA使用的组件
      • 79.13 使用两个数据源配置jOOQ
    • 80. 数据库初始化
      • 80.1 使用JPA初始化数据库
      • 80.2 使用Hibernate初始化数据库
      • 80.3 初始化数据库
      • 80.4 初始化Spring Batch数据库
      • 80.5 使用高级数据迁移工具
        • 80.5.1 启动时执行Flyway数据库迁移
        • 80.5.2 启动时执行Liquibase数据库迁移
    • 81. 消息传送
      • 81.1 禁用事务JMS会话
    • 82. 批处理应用
      • 82.1 在启动时执行Spring Batch作业
    • 83. 执行器
      • 83.1 改变HTTP端口或执行器端点的地址
      • 83.2 自定义WhiteLabel错误页面
    • 84. 安全
      • 84.1 关闭Spring Boot安全配置
      • 84.2 改变AuthenticationManager并添加用户账号
      • 84.3 当前端使用代理服务器时启用HTTPS
    • 85. 热交换
      • 85.1 重新加载静态内容
      • 85.2. 在不重启容器的情况下重新加载模板
        • 85.2.1 Thymeleaf模板
        • 85.2.2 FreeMarker模板
        • 85.2.3 Groovy模板
      • 85.3 应用快速重启
      • 85.4 在不重启容器的情况下重新加载Java类
    • 86. 构建
      • 86.1 生成构建信息
      • 86.2 生成Git信息
      • 86.3 自定义依赖版本
      • 86.4 使用Maven创建可执行JAR
      • 86.5 将Spring Boot应用作为依赖
      • 86.6 在可执行jar运行时提取特定的版本
      • 86.7 使用排除创建不可执行的JAR
      • 86.8 远程调试使用Maven启动的Spring Boot项目
      • 86.9 使用Ant构建可执行存档(不使用spring-boot-antlib)
    • 87. 传统部署
      • 87.1 创建可部署的war文件
      • 87.2 为老的servlet容器创建可部署的war文件
      • 87.3 将现有的应用转换为Spring Boot
      • 87.4 部署WAR到Weblogic
      • 87.5 部署WAR到老的(Servlet2.5)容器
      • 87.6 使用Lettuce来代替Jedis
  • X.附录
    • 附录A. 常见应用属性
    • 附录B. 配置元数据
      • 附录B.1. 元数据格式
        • 附录B.1.1. Group属性
        • 附录B.1.2. Property属性
        • 附录B.1.3. Hint属性
        • 附录B.1.4. 可重复的元数据节点
      • 附录B.2. 提供人工提示
        • 附录 B.2.1 值提示
        • 附录 B.2.2 值提供者
      • 附录B.3. 使用注解处理器产生自己的元数据
        • 附录 B.3.1. 内嵌属性
        • 附录 B.3.2. 添加其他的元数据
    • 附录C. 自动配置类
      • 附录C.1. 来自spring-boot-autoconfigure模块
      • 附录C.2. 来自spring-boot-actuator-autoconfigure模块
    • 附录D. 测试的自动配置的标注
    • 附录E. 可执行Jar格式
      • 附录E.1. 内嵌JARs
        • 附录E.1.1. 可执行Jar文件结构
        • 附录E.1.2. 可执行War文件结构
      • 附录E.2. Spring Boot的"JarFile"类
        • 附录E.2.1. 对标准Java "JarFile"的兼容性
      • 附录E.3. 启动可执行Jars
        • 附录E.3.1 Launcher manifest
        • 附录E.3.2. 暴露的存档
      • 附录E.4. PropertiesLauncher特性
      • 附录E.5. 可执行jar的限制
      • 附录E.6. 可替代的单一jar解决方案
    • 附录F. 依赖版本
由 GitBook 提供支持
在本页

这有帮助吗?

  1. X.附录

附录F. 依赖版本

下表提供了Spring Boot在其CLI(命令行接口)、Maven依赖关系管理和Gradle插件中提供的所有依赖版本的详细信息。当你在没有声明版本的情况下声明对这些artifact中的一个依赖关系时,将使用表中列出的版本。

Group ID

Artifact ID

版本

antlr

antlr

2.7.7

ch.qos.logback

logback-access

1.2.3

ch.qos.logback

logback-classic

1.2.3

ch.qos.logback

logback-core

1.2.3

com.atomikos

transactions-jdbc

4.0.6

com.atomikos

transactions-jms

4.0.6

com.atomikos

transactions-jta

4.0.6

com.couchbase.client

couchbase-spring-cache

2.1.0

com.couchbase.client

java-client

2.5.5

com.datastax.cassandra

cassandra-driver-core

3.4.0

com.datastax.cassandra

cassandra-driver-mapping

3.4.0

com.fasterxml

classmate

1.3.4

com.fasterxml.jackson.core

jackson-annotations

2.9.0

com.fasterxml.jackson.core

jackson-core

2.9.4

com.fasterxml.jackson.core

jackson-databind

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-avro

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-cbor

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-csv

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-ion

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-properties

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-protobuf

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-smile

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-xml

2.9.4

com.fasterxml.jackson.dataformat

jackson-dataformat-yaml

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-guava

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-hibernate3

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-hibernate4

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-hibernate5

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-hppc

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-jaxrs

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-jdk8

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-joda

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-json-org

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-jsr310

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-jsr353

2.9.4

com.fasterxml.jackson.datatype

jackson-datatype-pcollections

2.9.4

com.fasterxml.jackson.jaxrs

jackson-jaxrs-base

2.9.4

com.fasterxml.jackson.jaxrs

jackson-jaxrs-cbor-provider

2.9.4

com.fasterxml.jackson.jaxrs

jackson-jaxrs-json-provider

2.9.4

com.fasterxml.jackson.jaxrs

jackson-jaxrs-smile-provider

2.9.4

com.fasterxml.jackson.jaxrs

jackson-jaxrs-xml-provider

2.9.4

com.fasterxml.jackson.jaxrs

jackson-jaxrs-yaml-provider

2.9.4

com.fasterxml.jackson.jr

jackson-jr-all

2.9.4

com.fasterxml.jackson.jr

jackson-jr-objects

2.9.4

com.fasterxml.jackson.jr

jackson-jr-retrofit2

2.9.4

com.fasterxml.jackson.jr

jackson-jr-stree

2.9.4

com.fasterxml.jackson.module

jackson-module-afterburner

2.9.4

com.fasterxml.jackson.module

jackson-module-guice

2.9.4

com.fasterxml.jackson.module

jackson-module-jaxb-annotations

2.9.4

com.fasterxml.jackson.module

jackson-module-jsonSchema

2.9.4

com.fasterxml.jackson.module

jackson-module-kotlin

2.9.4

com.fasterxml.jackson.module

jackson-module-mrbean

2.9.4

com.fasterxml.jackson.module

jackson-module-osgi

2.9.4

com.fasterxml.jackson.module

jackson-module-parameter-names

2.9.4

com.fasterxml.jackson.module

jackson-module-paranamer

2.9.4

com.fasterxml.jackson.module

jackson-module-scala_2.10

2.9.4

com.fasterxml.jackson.module

jackson-module-scala_2.11

2.9.4

com.fasterxml.jackson.module

jackson-module-scala_2.12

2.9.4

com.github.ben-manes.caffeine

caffeine

2.6.2

com.github.mxab.thymeleaf.extras

thymeleaf-extras-data-attribute

2.0.1

com.google.appengine

appengine-api-1.0-sdk

1.9.62

com.google.code.gson

gson

2.8.2

com.googlecode.json-simple

json-simple

1.1.1

com.h2database

h2

1.4.196

com.hazelcast

hazelcast

3.9.3

com.hazelcast

hazelcast-client

3.9.3

com.hazelcast

hazelcast-hibernate52

1.2.3

com.hazelcast

hazelcast-spring

3.9.3

com.jayway.jsonpath

json-path

2.4.0

com.jayway.jsonpath

json-path-assert

2.4.0

com.microsoft.sqlserver

mssql-jdbc

6.2.2.jre8

com.querydsl

querydsl-apt

4.1.4

com.querydsl

querydsl-collections

4.1.4

com.querydsl

querydsl-core

4.1.4

com.querydsl

querydsl-jpa

4.1.4

com.querydsl

querydsl-mongodb

4.1.4

com.rabbitmq

amqp-client

5.1.2

com.samskivert

jmustache

1.14

com.sendgrid

sendgrid-java

4.1.2

com.sun.mail

javax.mail

1.6.1

com.timgroup

java-statsd-client

3.1.0

com.unboundid

unboundid-ldapsdk

4.0.4

com.zaxxer

HikariCP

2.7.8

commons-codec

commons-codec

1.11

commons-pool

commons-pool

1.6

de.flapdoodle.embed

de.flapdoodle.embed.mongo

2.0.3

dom4j

dom4j

1.6.1

io.dropwizard.metrics

metrics-annotation

3.2.6

io.dropwizard.metrics

metrics-core

3.2.6

io.dropwizard.metrics

metrics-ehcache

3.2.6

io.dropwizard.metrics

metrics-ganglia

3.2.6

io.dropwizard.metrics

metrics-graphite

3.2.6

io.dropwizard.metrics

metrics-healthchecks

3.2.6

io.dropwizard.metrics

metrics-httpasyncclient

3.2.6

io.dropwizard.metrics

metrics-jdbi

3.2.6

io.dropwizard.metrics

metrics-jersey

3.2.6

io.dropwizard.metrics

metrics-jersey2

3.2.6

io.dropwizard.metrics

metrics-jetty8

3.2.6

io.dropwizard.metrics

metrics-jetty9

3.2.6

io.dropwizard.metrics

metrics-jetty9-legacy

3.2.6

io.dropwizard.metrics

metrics-json

3.2.6

io.dropwizard.metrics

metrics-jvm

3.2.6

io.dropwizard.metrics

metrics-log4j

3.2.6

io.dropwizard.metrics

metrics-log4j2

3.2.6

io.dropwizard.metrics

metrics-logback

3.2.6

io.dropwizard.metrics

metrics-servlet

3.2.6

io.dropwizard.metrics

metrics-servlets

3.2.6

io.lettuce

lettuce-core

5.0.2.RELEASE

io.micrometer

micrometer-core

1.0.1

io.micrometer

micrometer-registry-atlas

1.0.1

io.micrometer

micrometer-registry-datadog

1.0.1

io.micrometer

micrometer-registry-ganglia

1.0.1

io.micrometer

micrometer-registry-graphite

1.0.1

io.micrometer

micrometer-registry-influx

1.0.1

io.micrometer

micrometer-registry-jmx

1.0.1

io.micrometer

micrometer-registry-new-relic

1.0.1

io.micrometer

micrometer-registry-prometheus

1.0.1

io.micrometer

micrometer-registry-signalfx

1.0.1

io.micrometer

micrometer-registry-statsd

1.0.1

io.micrometer

micrometer-registry-wavefront

1.0.1

io.netty

netty-all

4.1.22.Final

io.netty

netty-buffer

4.1.22.Final

io.netty

netty-codec

4.1.22.Final

io.netty

netty-codec-dns

4.1.22.Final

io.netty

netty-codec-haproxy

4.1.22.Final

io.netty

netty-codec-http

4.1.22.Final

io.netty

netty-codec-http2

4.1.22.Final

io.netty

netty-codec-memcache

4.1.22.Final

io.netty

netty-codec-mqtt

4.1.22.Final

io.netty

netty-codec-redis

4.1.22.Final

io.netty

netty-codec-smtp

4.1.22.Final

io.netty

netty-codec-socks

4.1.22.Final

io.netty

netty-codec-stomp

4.1.22.Final

io.netty

netty-codec-xml

4.1.22.Final

io.netty

netty-common

4.1.22.Final

io.netty

netty-dev-tools

4.1.22.Final

io.netty

netty-example

4.1.22.Final

io.netty

netty-handler

4.1.22.Final

io.netty

netty-handler-proxy

4.1.22.Final

io.netty

netty-resolver

4.1.22.Final

io.netty

netty-resolver-dns

4.1.22.Final

io.netty

netty-transport

4.1.22.Final

io.netty

netty-transport-native-epoll

4.1.22.Final

io.netty

netty-transport-native-kqueue

4.1.22.Final

io.netty

netty-transport-native-unix-common

4.1.22.Final

io.netty

netty-transport-rxtx

4.1.22.Final

io.netty

netty-transport-sctp

4.1.22.Final

io.netty

netty-transport-udt

4.1.22.Final

io.projectreactor

reactor-core

3.1.5.RELEASE

io.projectreactor

reactor-test

3.1.5.RELEASE

io.projectreactor.addons

reactor-adapter

3.1.6.RELEASE

io.projectreactor.addons

reactor-extra

3.1.6.RELEASE

io.projectreactor.addons

reactor-logback

3.1.6.RELEASE

io.projectreactor.ipc

reactor-netty

0.7.5.RELEASE

io.projectreactor.kafka

reactor-kafka

1.0.0.RELEASE

io.reactivex

rxjava

1.3.6

io.reactivex

rxjava-reactive-streams

1.2.1

io.reactivex.rxjava2

rxjava

2.1.10

io.rest-assured

json-path

3.0.7

io.rest-assured

json-schema-validator

3.0.7

io.rest-assured

rest-assured

3.0.7

io.rest-assured

scala-support

3.0.7

io.rest-assured

spring-mock-mvc

3.0.7

io.rest-assured

xml-path

3.0.7

io.searchbox

jest

5.3.3

io.undertow

undertow-core

1.4.22.Final

io.undertow

undertow-servlet

1.4.22.Final

io.undertow

undertow-websockets-jsr

1.4.22.Final

javax.annotation

javax.annotation-api

1.3.2

javax.cache

cache-api

1.1.0

javax.jms

javax.jms-api

2.0.1

javax.json

javax.json-api

1.1.2

javax.json.bind

javax.json.bind-api

1

javax.mail

javax.mail-api

1.6.1

javax.money

money-api

1.0.1

javax.servlet

javax.servlet-api

3.1.0

javax.servlet

jstl

1.2

javax.transaction

javax.transaction-api

1.2

javax.validation

validation-api

2.0.1.Final

javax.xml.bind

jaxb-api

2.3.0

jaxen

jaxen

1.1.6

joda-time

joda-time

2.9.9

junit

junit

4.12

mysql

mysql-connector-java

5.1.45

net.bytebuddy

byte-buddy

1.7.10

net.bytebuddy

byte-buddy-agent

1.7.10

net.java.dev.jna

jna

4.5.1

net.java.dev.jna

jna-platform

4.5.1

net.sf.ehcache

ehcache

2.10.4

net.sourceforge.htmlunit

htmlunit

2.29

net.sourceforge.jtds

jtds

1.3.1

net.sourceforge.nekohtml

nekohtml

1.9.22

nz.net.ultraq.thymeleaf

thymeleaf-layout-dialect

2.3.0

org.apache.activemq

activemq-amqp

5.15.3

org.apache.activemq

activemq-blueprint

5.15.3

org.apache.activemq

activemq-broker

5.15.3

org.apache.activemq

activemq-camel

5.15.3

org.apache.activemq

activemq-client

5.15.3

org.apache.activemq

activemq-console

5.15.3

org.apache.activemq

activemq-http

5.15.3

org.apache.activemq

activemq-jaas

5.15.3

org.apache.activemq

activemq-jdbc-store

5.15.3

org.apache.activemq

activemq-jms-pool

5.15.3

org.apache.activemq

activemq-kahadb-store

5.15.3

org.apache.activemq

activemq-karaf

5.15.3

org.apache.activemq

activemq-leveldb-store

5.15.3

org.apache.activemq

activemq-log4j-appender

5.15.3

org.apache.activemq

activemq-mqtt

5.15.3

org.apache.activemq

activemq-openwire-generator

5.15.3

org.apache.activemq

activemq-openwire-legacy

5.15.3

org.apache.activemq

activemq-osgi

5.15.3

org.apache.activemq

activemq-partition

5.15.3

org.apache.activemq

activemq-pool

5.15.3

org.apache.activemq

activemq-ra

5.15.3

org.apache.activemq

activemq-run

5.15.3

org.apache.activemq

activemq-runtime-config

5.15.3

org.apache.activemq

activemq-shiro

5.15.3

org.apache.activemq

activemq-spring

5.15.3

org.apache.activemq

activemq-stomp

5.15.3

org.apache.activemq

activemq-web

5.15.3

org.apache.activemq

artemis-amqp-protocol

2.4.0

org.apache.activemq

artemis-commons

2.4.0

org.apache.activemq

artemis-core-client

2.4.0

org.apache.activemq

artemis-jms-client

2.4.0

org.apache.activemq

artemis-jms-server

2.4.0

org.apache.activemq

artemis-journal

2.4.0

org.apache.activemq

artemis-native

2.4.0

org.apache.activemq

artemis-selector

2.4.0

org.apache.activemq

artemis-server

2.4.0

org.apache.activemq

artemis-service-extensions

2.4.0

org.apache.commons

commons-dbcp2

2.2.0

org.apache.commons

commons-lang3

3.7

org.apache.commons

commons-pool2

2.5.0

org.apache.derby

derby

10.14.1.0

org.apache.httpcomponents

fluent-hc

4.5.5

org.apache.httpcomponents

httpasyncclient

4.1.3

org.apache.httpcomponents

httpclient

4.5.5

org.apache.httpcomponents

httpclient-cache

4.5.5

org.apache.httpcomponents

httpclient-osgi

4.5.5

org.apache.httpcomponents

httpclient-win

4.5.5

org.apache.httpcomponents

httpcore

4.4.9

org.apache.httpcomponents

httpcore-nio

4.4.9

org.apache.httpcomponents

httpmime

4.5.5

org.apache.johnzon

johnzon-jsonb

1.1.6

org.apache.logging.log4j

log4j-1.2-api

2.10.0

org.apache.logging.log4j

log4j-api

2.10.0

org.apache.logging.log4j

log4j-cassandra

2.10.0

org.apache.logging.log4j

log4j-core

2.10.0

org.apache.logging.log4j

log4j-couchdb

2.10.0

org.apache.logging.log4j

log4j-flume-ng

2.10.0

org.apache.logging.log4j

log4j-iostreams

2.10.0

org.apache.logging.log4j

log4j-jcl

2.10.0

org.apache.logging.log4j

log4j-jmx-gui

2.10.0

org.apache.logging.log4j

log4j-jul

2.10.0

org.apache.logging.log4j

log4j-liquibase

2.10.0

org.apache.logging.log4j

log4j-mongodb

2.10.0

org.apache.logging.log4j

log4j-slf4j-impl

2.10.0

org.apache.logging.log4j

log4j-taglib

2.10.0

org.apache.logging.log4j

log4j-to-slf4j

2.10.0

org.apache.logging.log4j

log4j-web

2.10.0

org.apache.solr

solr-analysis-extras

6.6.2

org.apache.solr

solr-analytics

6.6.2

org.apache.solr

solr-cell

6.6.2

org.apache.solr

solr-clustering

6.6.2

org.apache.solr

solr-core

6.6.2

org.apache.solr

solr-dataimporthandler

6.6.2

org.apache.solr

solr-dataimporthandler-extras

6.6.2

org.apache.solr

solr-langid

6.6.2

org.apache.solr

solr-solrj

6.6.2

org.apache.solr

solr-test-framework

6.6.2

org.apache.solr

solr-uima

6.6.2

org.apache.solr

solr-velocity

6.6.2

org.apache.tomcat

tomcat-annotations-api

8.5.28

org.apache.tomcat

tomcat-catalina-jmx-remote

8.5.28

org.apache.tomcat

tomcat-jdbc

8.5.28

org.apache.tomcat

tomcat-jsp-api

8.5.28

org.apache.tomcat.embed

tomcat-embed-core

8.5.28

org.apache.tomcat.embed

tomcat-embed-el

8.5.28

org.apache.tomcat.embed

tomcat-embed-jasper

8.5.28

org.apache.tomcat.embed

tomcat-embed-websocket

8.5.28

org.aspectj

aspectjrt

1.8.13

org.aspectj

aspectjtools

1.8.13

org.aspectj

aspectjweaver

1.8.13

org.assertj

assertj-core

3.9.1

org.codehaus.btm

btm

2.1.4

org.codehaus.groovy

groovy

2.4.13

org.codehaus.groovy

groovy-all

2.4.13

org.codehaus.groovy

groovy-ant

2.4.13

org.codehaus.groovy

groovy-bsf

2.4.13

org.codehaus.groovy

groovy-console

2.4.13

org.codehaus.groovy

groovy-docgenerator

2.4.13

org.codehaus.groovy

groovy-groovydoc

2.4.13

org.codehaus.groovy

groovy-groovysh

2.4.13

org.codehaus.groovy

groovy-jmx

2.4.13

org.codehaus.groovy

groovy-json

2.4.13

org.codehaus.groovy

groovy-jsr223

2.4.13

org.codehaus.groovy

groovy-nio

2.4.13

org.codehaus.groovy

groovy-servlet

2.4.13

org.codehaus.groovy

groovy-sql

2.4.13

org.codehaus.groovy

groovy-swing

2.4.13

org.codehaus.groovy

groovy-templates

2.4.13

org.codehaus.groovy

groovy-test

2.4.13

org.codehaus.groovy

groovy-testng

2.4.13

org.codehaus.groovy

groovy-xml

2.4.13

org.codehaus.janino

janino

3.0.8

org.eclipse.jetty

apache-jsp

9.4.8.v20171121

org.eclipse.jetty

apache-jstl

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-client

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-conscrypt-client

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-conscrypt-server

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-java-client

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-java-server

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-openjdk8-client

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-openjdk8-server

9.4.8.v20171121

org.eclipse.jetty

jetty-alpn-server

9.4.8.v20171121

org.eclipse.jetty

jetty-annotations

9.4.8.v20171121

org.eclipse.jetty

jetty-ant

9.4.8.v20171121

org.eclipse.jetty

jetty-client

9.4.8.v20171121

org.eclipse.jetty

jetty-continuation

9.4.8.v20171121

org.eclipse.jetty

jetty-deploy

9.4.8.v20171121

org.eclipse.jetty

jetty-distribution

9.4.8.v20171121

org.eclipse.jetty

jetty-hazelcast

9.4.8.v20171121

org.eclipse.jetty

jetty-home

9.4.8.v20171121

org.eclipse.jetty

jetty-http

9.4.8.v20171121

org.eclipse.jetty

jetty-http-spi

9.4.8.v20171121

org.eclipse.jetty

jetty-infinispan

9.4.8.v20171121

org.eclipse.jetty

jetty-io

9.4.8.v20171121

org.eclipse.jetty

jetty-jaas

9.4.8.v20171121

org.eclipse.jetty

jetty-jaspi

9.4.8.v20171121

org.eclipse.jetty

jetty-jmx

9.4.8.v20171121

org.eclipse.jetty

jetty-jndi

9.4.8.v20171121

org.eclipse.jetty

jetty-nosql

9.4.8.v20171121

org.eclipse.jetty

jetty-plus

9.4.8.v20171121

org.eclipse.jetty

jetty-proxy

9.4.8.v20171121

org.eclipse.jetty

jetty-quickstart

9.4.8.v20171121

org.eclipse.jetty

jetty-rewrite

9.4.8.v20171121

org.eclipse.jetty

jetty-security

9.4.8.v20171121

org.eclipse.jetty

jetty-server

9.4.8.v20171121

org.eclipse.jetty

jetty-servlet

9.4.8.v20171121

org.eclipse.jetty

jetty-servlets

9.4.8.v20171121

org.eclipse.jetty

jetty-spring

9.4.8.v20171121

org.eclipse.jetty

jetty-unixsocket

9.4.8.v20171121

org.eclipse.jetty

jetty-util

9.4.8.v20171121

org.eclipse.jetty

jetty-util-ajax

9.4.8.v20171121

org.eclipse.jetty

jetty-webapp

9.4.8.v20171121

org.eclipse.jetty

jetty-xml

9.4.8.v20171121

org.eclipse.jetty.cdi

cdi-core

9.4.8.v20171121

org.eclipse.jetty.cdi

cdi-full-servlet

9.4.8.v20171121

org.eclipse.jetty.cdi

cdi-servlet

9.4.8.v20171121

org.eclipse.jetty.fcgi

fcgi-client

9.4.8.v20171121

org.eclipse.jetty.fcgi

fcgi-server

9.4.8.v20171121

org.eclipse.jetty.gcloud

jetty-gcloud-session-manager

9.4.8.v20171121

org.eclipse.jetty.http2

http2-client

9.4.8.v20171121

org.eclipse.jetty.http2

http2-common

9.4.8.v20171121

org.eclipse.jetty.http2

http2-hpack

9.4.8.v20171121

org.eclipse.jetty.http2

http2-http-client-transport

9.4.8.v20171121

org.eclipse.jetty.http2

http2-server

9.4.8.v20171121

org.eclipse.jetty.memcached

jetty-memcached-sessions

9.4.8.v20171121

org.eclipse.jetty.orbit

javax.servlet.jsp

2.2.0.v201112011158

org.eclipse.jetty.osgi

jetty-httpservice

9.4.8.v20171121

org.eclipse.jetty.osgi

jetty-osgi-boot

9.4.8.v20171121

org.eclipse.jetty.osgi

jetty-osgi-boot-jsp

9.4.8.v20171121

org.eclipse.jetty.osgi

jetty-osgi-boot-warurl

9.4.8.v20171121

org.eclipse.jetty.websocket

javax-websocket-client-impl

9.4.8.v20171121

org.eclipse.jetty.websocket

javax-websocket-server-impl

9.4.8.v20171121

org.eclipse.jetty.websocket

websocket-api

9.4.8.v20171121

org.eclipse.jetty.websocket

websocket-client

9.4.8.v20171121

org.eclipse.jetty.websocket

websocket-common

9.4.8.v20171121

org.eclipse.jetty.websocket

websocket-server

9.4.8.v20171121

org.eclipse.jetty.websocket

websocket-servlet

9.4.8.v20171121

org.ehcache

ehcache

3.5.0

org.ehcache

ehcache-clustered

3.5.0

org.ehcache

ehcache-transactions

3.5.0

org.elasticsearch

elasticsearch

5.6.8

org.elasticsearch.client

transport

5.6.8

org.elasticsearch.plugin

transport-netty4-client

5.6.8

org.firebirdsql.jdbc

jaybird-jdk17

3.0.3

org.firebirdsql.jdbc

jaybird-jdk18

3.0.3

org.flywaydb

flyway-core

5.0.7

org.freemarker

freemarker

2.3.27-incubating

org.glassfish

javax.el

3.0.0

org.glassfish.jersey.containers

jersey-container-servlet

2.26

org.glassfish.jersey.containers

jersey-container-servlet-core

2.26

org.glassfish.jersey.core

jersey-client

2.26

org.glassfish.jersey.core

jersey-common

2.26

org.glassfish.jersey.core

jersey-server

2.26

org.glassfish.jersey.ext

jersey-bean-validation

2.26

org.glassfish.jersey.ext

jersey-entity-filtering

2.26

org.glassfish.jersey.ext

jersey-spring4

2.26

org.glassfish.jersey.media

jersey-media-jaxb

2.26

org.glassfish.jersey.media

jersey-media-json-jackson

2.26

org.glassfish.jersey.media

jersey-media-multipart

2.26

org.hamcrest

hamcrest-core

1.3

org.hamcrest

hamcrest-library

1.3

org.hibernate

hibernate-c3p0

5.2.14.Final

org.hibernate

hibernate-core

5.2.14.Final

org.hibernate

hibernate-ehcache

5.2.14.Final

org.hibernate

hibernate-entitymanager

5.2.14.Final

org.hibernate

hibernate-envers

5.2.14.Final

org.hibernate

hibernate-hikaricp

5.2.14.Final

org.hibernate

hibernate-infinispan

5.2.14.Final

org.hibernate

hibernate-java8

5.2.14.Final

org.hibernate

hibernate-jcache

5.2.14.Final

org.hibernate

hibernate-jpamodelgen

5.2.14.Final

org.hibernate

hibernate-proxool

5.2.14.Final

org.hibernate

hibernate-spatial

5.2.14.Final

org.hibernate

hibernate-testing

5.2.14.Final

org.hibernate.validator

hibernate-validator

6.0.7.Final

org.hibernate.validator

hibernate-validator-annotation-processor

6.0.7.Final

org.hsqldb

hsqldb

2.4.0

org.infinispan

infinispan-jcache

9.1.6.Final

org.infinispan

infinispan-spring4-common

9.1.6.Final

org.infinispan

infinispan-spring4-embedded

9.1.6.Final

org.influxdb

influxdb-java

2.9

org.jboss

jboss-transaction-spi

7.6.0.Final

org.jboss.logging

jboss-logging

3.3.2.Final

org.jboss.narayana.jta

jdbc

5.8.0.Final

org.jboss.narayana.jta

jms

5.8.0.Final

org.jboss.narayana.jta

jta

5.8.0.Final

org.jboss.narayana.jts

narayana-jts-integration

5.8.0.Final

org.jdom

jdom2

2.0.6

org.jetbrains.kotlin

kotlin-reflect

1.2.21

org.jetbrains.kotlin

kotlin-runtime

1.2.21

org.jetbrains.kotlin

kotlin-stdlib

1.2.21

org.jetbrains.kotlin

kotlin-stdlib-jdk7

1.2.21

org.jetbrains.kotlin

kotlin-stdlib-jdk8

1.2.21

org.jetbrains.kotlin

kotlin-stdlib-jre7

1.2.21

org.jetbrains.kotlin

kotlin-stdlib-jre8

1.2.21

org.jolokia

jolokia-core

1.5.0

org.jooq

jooq

3.10.5

org.jooq

jooq-codegen

3.10.5

org.jooq

jooq-meta

3.10.5

org.junit.jupiter

junit-jupiter-api

5.1.0

org.junit.jupiter

junit-jupiter-engine

5.1.0

org.liquibase

liquibase-core

3.5.5

org.mariadb.jdbc

mariadb-java-client

2.2.2

org.mockito

mockito-core

2.15.0

org.mockito

mockito-inline

2.15.0

org.mongodb

bson

3.6.3

org.mongodb

mongodb-driver

3.6.3

org.mongodb

mongodb-driver-async

3.6.3

org.mongodb

mongodb-driver-core

3.6.3

org.mongodb

mongodb-driver-reactivestreams

1.7.1

org.mongodb

mongo-java-driver

3.6.3

org.mortbay.jasper

apache-el

8.5.24.2

org.neo4j

neo4j-ogm-api

3.1.0

org.neo4j

neo4j-ogm-bolt-driver

3.1.0

org.neo4j

neo4j-ogm-core

3.1.0

org.neo4j

neo4j-ogm-http-driver

3.1.0

org.postgresql

postgresql

42.2.1

org.projectlombok

lombok

1.16.20

org.quartz-scheduler

quartz

2.3.0

org.reactivestreams

reactive-streams

1.0.2

org.seleniumhq.selenium

htmlunit-driver

2.29.2

org.seleniumhq.selenium

selenium-api

3.9.1

org.seleniumhq.selenium

selenium-chrome-driver

3.9.1

org.seleniumhq.selenium

selenium-edge-driver

3.9.1

org.seleniumhq.selenium

selenium-firefox-driver

3.9.1

org.seleniumhq.selenium

selenium-ie-driver

3.9.1

org.seleniumhq.selenium

selenium-java

3.9.1

org.seleniumhq.selenium

selenium-opera-driver

3.9.1

org.seleniumhq.selenium

selenium-remote-driver

3.9.1

org.seleniumhq.selenium

selenium-safari-driver

3.9.1

org.seleniumhq.selenium

selenium-support

3.9.1

org.skyscreamer

jsonassert

1.5.0

org.slf4j

jcl-over-slf4j

1.7.25

org.slf4j

jul-to-slf4j

1.7.25

org.slf4j

log4j-over-slf4j

1.7.25

org.slf4j

slf4j-api

1.7.25

org.slf4j

slf4j-ext

1.7.25

org.slf4j

slf4j-jcl

1.7.25

org.slf4j

slf4j-jdk14

1.7.25

org.slf4j

slf4j-log4j12

1.7.25

org.slf4j

slf4j-nop

1.7.25

org.slf4j

slf4j-simple

1.7.25

org.springframework

spring-aop

5.0.4.RELEASE

org.springframework

spring-aspects

5.0.4.RELEASE

org.springframework

spring-beans

5.0.4.RELEASE

org.springframework

spring-context

5.0.4.RELEASE

org.springframework

spring-context-indexer

5.0.4.RELEASE

org.springframework

spring-context-support

5.0.4.RELEASE

org.springframework

spring-core

5.0.4.RELEASE

org.springframework

spring-expression

5.0.4.RELEASE

org.springframework

spring-instrument

5.0.4.RELEASE

org.springframework

spring-jcl

5.0.4.RELEASE

org.springframework

spring-jdbc

5.0.4.RELEASE

org.springframework

spring-jms

5.0.4.RELEASE

org.springframework

spring-messaging

5.0.4.RELEASE

org.springframework

spring-orm

5.0.4.RELEASE

org.springframework

spring-oxm

5.0.4.RELEASE

org.springframework

spring-test

5.0.4.RELEASE

org.springframework

spring-tx

5.0.4.RELEASE

org.springframework

spring-web

5.0.4.RELEASE

org.springframework

spring-webflux

5.0.4.RELEASE

org.springframework

spring-webmvc

5.0.4.RELEASE

org.springframework

spring-websocket

5.0.4.RELEASE

org.springframework.amqp

spring-amqp

2.0.2.RELEASE

org.springframework.amqp

spring-rabbit

2.0.2.RELEASE

org.springframework.batch

spring-batch-core

4.0.0.RELEASE

org.springframework.batch

spring-batch-infrastructure

4.0.0.RELEASE

org.springframework.batch

spring-batch-integration

4.0.0.RELEASE

org.springframework.batch

spring-batch-test

4.0.0.RELEASE

org.springframework.boot

spring-boot

2.0.0.RELEASE

org.springframework.boot

spring-boot-actuator

2.0.0.RELEASE

org.springframework.boot

spring-boot-actuator-autoconfigure

2.0.0.RELEASE

org.springframework.boot

spring-boot-autoconfigure

2.0.0.RELEASE

org.springframework.boot

spring-boot-autoconfigure-processor

2.0.0.RELEASE

org.springframework.boot

spring-boot-configuration-metadata

2.0.0.RELEASE

org.springframework.boot

spring-boot-configuration-processor

2.0.0.RELEASE

org.springframework.boot

spring-boot-devtools

2.0.0.RELEASE

org.springframework.boot

spring-boot-loader

2.0.0.RELEASE

org.springframework.boot

spring-boot-loader-tools

2.0.0.RELEASE

org.springframework.boot

spring-boot-properties-migrator

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-activemq

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-actuator

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-amqp

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-aop

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-artemis

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-batch

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-cache

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-cloud-connectors

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-cassandra

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-cassandra-reactive

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-couchbase

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-couchbase-reactive

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-elasticsearch

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-jpa

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-ldap

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-mongodb

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-mongodb-reactive

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-neo4j

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-redis

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-redis-reactive

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-rest

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-data-solr

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-freemarker

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-groovy-templates

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-hateoas

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-integration

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jdbc

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jersey

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jetty

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jooq

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-json

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jta-atomikos

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jta-bitronix

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-jta-narayana

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-log4j2

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-logging

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-mail

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-mustache

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-quartz

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-reactor-netty

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-security

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-test

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-thymeleaf

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-tomcat

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-undertow

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-validation

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-web

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-webflux

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-web-services

2.0.0.RELEASE

org.springframework.boot

spring-boot-starter-websocket

2.0.0.RELEASE

org.springframework.boot

spring-boot-test

2.0.0.RELEASE

org.springframework.boot

spring-boot-test-autoconfigure

2.0.0.RELEASE

org.springframework.cloud

spring-cloud-cloudfoundry-connector

2.0.1.RELEASE

org.springframework.cloud

spring-cloud-connectors-core

2.0.1.RELEASE

org.springframework.cloud

spring-cloud-heroku-connector

2.0.1.RELEASE

org.springframework.cloud

spring-cloud-localconfig-connector

2.0.1.RELEASE

org.springframework.cloud

spring-cloud-spring-service-connector

2.0.1.RELEASE

org.springframework.data

spring-data-cassandra

2.0.5.RELEASE

org.springframework.data

spring-data-commons

2.0.5.RELEASE

org.springframework.data

spring-data-couchbase

3.0.5.RELEASE

org.springframework.data

spring-data-elasticsearch

3.0.5.RELEASE

org.springframework.data

spring-data-envers

2.0.5.RELEASE

org.springframework.data

spring-data-gemfire

2.0.5.RELEASE

org.springframework.data

spring-data-geode

2.0.5.RELEASE

org.springframework.data

spring-data-jpa

2.0.5.RELEASE

org.springframework.data

spring-data-keyvalue

2.0.5.RELEASE

org.springframework.data

spring-data-ldap

2.0.5.RELEASE

org.springframework.data

spring-data-mongodb

2.0.5.RELEASE

org.springframework.data

spring-data-mongodb-cross-store

2.0.5.RELEASE

org.springframework.data

spring-data-neo4j

5.0.5.RELEASE

org.springframework.data

spring-data-redis

2.0.5.RELEASE

org.springframework.data

spring-data-rest-core

3.0.5.RELEASE

org.springframework.data

spring-data-rest-hal-browser

3.0.5.RELEASE

org.springframework.data

spring-data-rest-webmvc

3.0.5.RELEASE

org.springframework.data

spring-data-solr

3.0.5.RELEASE

org.springframework.hateoas

spring-hateoas

0.24.0.RELEASE

org.springframework.integration

spring-integration-amqp

5.0.3.RELEASE

org.springframework.integration

spring-integration-core

5.0.3.RELEASE

org.springframework.integration

spring-integration-event

5.0.3.RELEASE

org.springframework.integration

spring-integration-feed

5.0.3.RELEASE

org.springframework.integration

spring-integration-file

5.0.3.RELEASE

org.springframework.integration

spring-integration-ftp

5.0.3.RELEASE

org.springframework.integration

spring-integration-gemfire

5.0.3.RELEASE

org.springframework.integration

spring-integration-groovy

5.0.3.RELEASE

org.springframework.integration

spring-integration-http

5.0.3.RELEASE

org.springframework.integration

spring-integration-ip

5.0.3.RELEASE

org.springframework.integration

spring-integration-jdbc

5.0.3.RELEASE

org.springframework.integration

spring-integration-jms

5.0.3.RELEASE

org.springframework.integration

spring-integration-jmx

5.0.3.RELEASE

org.springframework.integration

spring-integration-jpa

5.0.3.RELEASE

org.springframework.integration

spring-integration-mail

5.0.3.RELEASE

org.springframework.integration

spring-integration-mongodb

5.0.3.RELEASE

org.springframework.integration

spring-integration-mqtt

5.0.3.RELEASE

org.springframework.integration

spring-integration-redis

5.0.3.RELEASE

org.springframework.integration

spring-integration-rmi

5.0.3.RELEASE

org.springframework.integration

spring-integration-scripting

5.0.3.RELEASE

org.springframework.integration

spring-integration-security

5.0.3.RELEASE

org.springframework.integration

spring-integration-sftp

5.0.3.RELEASE

org.springframework.integration

spring-integration-stomp

5.0.3.RELEASE

org.springframework.integration

spring-integration-stream

5.0.3.RELEASE

org.springframework.integration

spring-integration-syslog

5.0.3.RELEASE

org.springframework.integration

spring-integration-test

5.0.3.RELEASE

org.springframework.integration

spring-integration-test-support

5.0.3.RELEASE

org.springframework.integration

spring-integration-twitter

5.0.3.RELEASE

org.springframework.integration

spring-integration-webflux

5.0.3.RELEASE

org.springframework.integration

spring-integration-websocket

5.0.3.RELEASE

org.springframework.integration

spring-integration-ws

5.0.3.RELEASE

org.springframework.integration

spring-integration-xml

5.0.3.RELEASE

org.springframework.integration

spring-integration-xmpp

5.0.3.RELEASE

org.springframework.integration

spring-integration-zookeeper

5.0.3.RELEASE

org.springframework.kafka

spring-kafka

2.1.4.RELEASE

org.springframework.kafka

spring-kafka-test

2.1.4.RELEASE

org.springframework.ldap

spring-ldap-core

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-core-tiger

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-ldif-batch

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-ldif-core

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-odm

2.3.2.RELEASE

org.springframework.ldap

spring-ldap-test

2.3.2.RELEASE

org.springframework.plugin

spring-plugin-core

1.2.0.RELEASE

org.springframework.plugin

spring-plugin-metadata

1.2.0.RELEASE

org.springframework.restdocs

spring-restdocs-asciidoctor

2.0.0.RELEASE

org.springframework.restdocs

spring-restdocs-core

2.0.0.RELEASE

org.springframework.restdocs

spring-restdocs-mockmvc

2.0.0.RELEASE

org.springframework.restdocs

spring-restdocs-restassured

2.0.0.RELEASE

org.springframework.restdocs

spring-restdocs-webtestclient

2.0.0.RELEASE

org.springframework.retry

spring-retry

1.2.2.RELEASE

org.springframework.security

spring-security-acl

5.0.3.RELEASE

org.springframework.security

spring-security-aspects

5.0.3.RELEASE

org.springframework.security

spring-security-cas

5.0.3.RELEASE

org.springframework.security

spring-security-config

5.0.3.RELEASE

org.springframework.security

spring-security-core

5.0.3.RELEASE

org.springframework.security

spring-security-crypto

5.0.3.RELEASE

org.springframework.security

spring-security-data

5.0.3.RELEASE

org.springframework.security

spring-security-ldap

5.0.3.RELEASE

org.springframework.security

spring-security-messaging

5.0.3.RELEASE

org.springframework.security

spring-security-oauth2-client

5.0.3.RELEASE

org.springframework.security

spring-security-oauth2-core

5.0.3.RELEASE

org.springframework.security

spring-security-oauth2-jose

5.0.3.RELEASE

org.springframework.security

spring-security-openid

5.0.3.RELEASE

org.springframework.security

spring-security-remoting

5.0.3.RELEASE

org.springframework.security

spring-security-taglibs

5.0.3.RELEASE

org.springframework.security

spring-security-test

5.0.3.RELEASE

org.springframework.security

spring-security-web

5.0.3.RELEASE

org.springframework.session

spring-session-core

2.0.2.RELEASE

org.springframework.session

spring-session-data-mongodb

2.0.2.RELEASE

org.springframework.session

spring-session-data-redis

2.0.2.RELEASE

org.springframework.session

spring-session-hazelcast

2.0.2.RELEASE

org.springframework.session

spring-session-jdbc

2.0.2.RELEASE

org.springframework.ws

spring-ws-core

3.0.0.RELEASE

org.springframework.ws

spring-ws-security

3.0.0.RELEASE

org.springframework.ws

spring-ws-support

3.0.0.RELEASE

org.springframework.ws

spring-ws-test

3.0.0.RELEASE

org.synchronoss.cloud

nio-multipart-parser

1.1.0

org.thymeleaf

thymeleaf

3.0.9.RELEASE

org.thymeleaf

thymeleaf-spring5

3.0.9.RELEASE

org.thymeleaf.extras

thymeleaf-extras-java8time

3.0.1.RELEASE

org.thymeleaf.extras

thymeleaf-extras-springsecurity4

3.0.2.RELEASE

org.webjars

hal-browser

3325375

org.webjars

webjars-locator-core

0.35

org.xerial

sqlite-jdbc

3.21.0.1

org.xmlunit

xmlunit-core

2.5.1

org.xmlunit

xmlunit-legacy

2.5.1

org.xmlunit

xmlunit-matchers

2.5.1

org.yaml

snakeyaml

1.19

redis.clients

jedis

2.9.0

wsdl4j

wsdl4j

1.6.3

xml-apis

xml-apis

1.4.01

上一页附录E.6. 可替代的单一jar解决方案

最后更新于5年前

这有帮助吗?