前言

要求

本节详细介绍了兼容的 JavaSpring Framework 版本。spring-doc.cn

兼容的 Java 版本

对于 Spring 集成 5.5.x,最低兼容的 Java 版本是 Java SE 8。 不支持旧版本的 Java。spring-doc.cn

Spring Framework 的兼容版本

Spring 集成 5.5.x 需要 Spring Framework 5.3 或更高版本。spring-doc.cn

代码约定

Spring Framework 2.0 引入了对名称空间的支持,这简化了应用程序上下文的 XML 配置,并允许 Spring 集成提供广泛的名称空间支持。spring-doc.cn

在本参考指南中,命名空间前缀用于 Spring 集成的核心命名空间支持。 每个 Spring 集成适配器类型(也称为模块)都提供自己的名称空间,该名称空间是使用以下约定配置的:intspring-doc.cn

以下示例显示了正在使用的 、 和 命名空间:intint-eventint-streamspring-doc.cn

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:int="http://www.springframework.org/schema/integration"
  xmlns:int-webflux="http://www.springframework.org/schema/integration/webflux"
  xmlns:int-stream="http://www.springframework.org/schema/integration/stream"
  xsi:schemaLocation="
   http://www.springframework.org/schema/beans
   https://www.springframework.org/schema/beans/spring-beans.xsd
   http://www.springframework.org/schema/integration
   https://www.springframework.org/schema/integration/spring-integration.xsd
   http://www.springframework.org/schema/integration/webflux
   https://www.springframework.org/schema/integration/webflux/spring-integration-webflux.xsd
   http://www.springframework.org/schema/integration/stream
   https://www.springframework.org/schema/integration/stream/spring-integration-stream.xsd">
…
</beans>

有关 Spring 集成的名称空间支持的详细说明,请参见名称空间支持spring-doc.cn

命名空间前缀可以自由选择。 您甚至可以选择根本不使用任何命名空间前缀。 因此,您应该应用最适合您的应用程序的约定。 但请注意,SpringSource Tool Suite™(STS)对 Spring 集成使用的名称空间约定与本参考指南中使用的相同。

本指南中的约定

在某些情况下,为了在指定较长的完全限定类名时帮助进行格式设置,我们将 to 和 to 缩短,例如使用 。org.springframeworko.sorg.springframework.integrationo.s.io.s.i.transaction.TransactionSynchronizationFactoryspring-doc.cn