命名空间支持

Spring Batch Integration 1.3 版本添加了专用的 XML 命名空间支持,旨在提供更轻松的配置体验。要使用此命名空间,请将以下命名空间声明添加到您的 Spring XML 应用上下文文件中。

<beans xmlns="http://www.springframework.org/schema/beans"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xmlns:batch-int="http://www.springframework.org/schema/batch-integration"
  xsi:schemaLocation="
    http://www.springframework.org/schema/batch-integration
    https://www.springframework.org/schema/batch-integration/spring-batch-integration.xsd">

    ...

</beans>

以下示例显示了 Spring Batch Integration 的完整配置的 Spring XML 应用上下文文件。

<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:batch="http://www.springframework.org/schema/batch"
  xmlns:batch-int="http://www.springframework.org/schema/batch-integration"
  xsi:schemaLocation="
    http://www.springframework.org/schema/batch-integration
    https://www.springframework.org/schema/batch-integration/spring-batch-integration.xsd
    http://www.springframework.org/schema/batch
    https://www.springframework.org/schema/batch/spring-batch.xsd
    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">

    ...

</beans>

也可以在引用的 XSD 文件中追加版本号。但是,由于无版本声明始终使用最新的模式,因此我们通常不建议将版本号追加到 XSD 名称。添加版本号可能会在更新 Spring Batch Integration 依赖项时产生问题,因为它们可能需要更新版本的 XML 模式。