为什么 spring 框架参考文档在他们的图表中缺少上下文支持
Why do spring framework reference doc missing context-support in their diagram
图表[2.1。 Spring Framework reference 4.1.4 中的 Spring Framework] 概述自上一篇文档以来已更新,但缺少 spring-context-support。在他们提到的图表中 context ,do that 也代表 spring-context-support ,但实际上这是完全分开的。虽然根据文档它声明它是核心容器之一,但我很好奇这是否只是他们的错误或者他们在国际上这样做。
正如 Mark 所说,图表是不同组件的逻辑表示。有些转化为不止一个物理模块。
spring-context
和spring-context-support
实际上是"tied"。分离的原因是 spring-context-support
与一堆第三方库集成,而 spring-context
提供核心基础设施。
对于缓存(因为你似乎提到了那个),基本的缓存基础设施在 spring-context
而 sprig-context-support
提供了各种集成(ehcache、番石榴、JSR-107 等)。
图表[2.1。 Spring Framework reference 4.1.4 中的 Spring Framework] 概述自上一篇文档以来已更新,但缺少 spring-context-support。在他们提到的图表中 context ,do that 也代表 spring-context-support ,但实际上这是完全分开的。虽然根据文档它声明它是核心容器之一,但我很好奇这是否只是他们的错误或者他们在国际上这样做。
正如 Mark 所说,图表是不同组件的逻辑表示。有些转化为不止一个物理模块。
spring-context
和spring-context-support
实际上是"tied"。分离的原因是 spring-context-support
与一堆第三方库集成,而 spring-context
提供核心基础设施。
对于缓存(因为你似乎提到了那个),基本的缓存基础设施在 spring-context
而 sprig-context-support
提供了各种集成(ehcache、番石榴、JSR-107 等)。