附录 A:覆盖 Spring Boot 依赖项

在 Spring Boot 应用程序中使用 Spring for Apache Kafka 时,Apache Kafka 依赖项版本由 Spring Boot 的依赖项管理确定。 如果您希望使用不同版本的 or ,并使用嵌入式 kafka 代理进行测试,则需要覆盖 Spring Boot 依赖管理使用的版本;设置属性。kafka-clientskafka-streamskafka.versionspring-doc.cn

或者,要将不同的 Spring for Apache Kafka 版本与支持的 Spring Boot 版本一起使用,请设置该属性。spring-kafka.versionspring-doc.cn

或者,要将不同的 Spring for Apache Kafka 版本与支持的 Spring Boot 版本一起使用,请设置该属性。 例如,Spring Boot 2.7.x 支持 2.9.13,默认情况下,Spring Boot 2.7.x 引入了 2.8.x。spring-kafka.versionspring-doc.cn

Maven 系列
<properties>
    <kafka.version>3.6.0</kafka.version>
    <spring-kafka.version>2.9.13</spring-kafka.version>
</properties>

<dependency>
    <groupId>org.springframework.kafka</groupId>
    <artifactId>spring-kafka</artifactId>
</dependency>
<!-- optional - only needed when using kafka-streams -->
<dependency>
    <groupId>org.apache.kafka</groupId>
    <artifactId>kafka-streams</artifactId>
</dependency>

<dependency>
    <groupId>org.springframework.kafka</groupId>
    <artifactId>spring-kafka-test</artifactId>
    <scope>test</scope>
</dependency>

<!-- Required for the embedded broker when using 3.6.0 or later with Boot 2.7.x -->
<dependency>
	<groupId>org.apache.kafka</groupId>
	<artifactId>kafka-server-common</artifactId>
	<classifier>test</classifier>
	<scope>test</scope>
	<version>${kafka.version}</version>
</dependency>
Gradle
ext['kafka.version'] = '3.6.0'
ext['spring-kafka.version'] = '2.9.13'

dependencies {
    implementation 'org.springframework.kafka:spring-kafka'
    implementation 'org.apache.kafka:kafka-streams' // optional - only needed when using kafka-streams
    testImplementation 'org.springframework.kafka:spring-kafka-test'
    // the following is required for the embedded broker when using 3.6.0 or later with Boot 2.7.x
    testImplementation "org.apache.kafka:kafka-server-common:$kafka.version:test"
}

仅当在测试中使用嵌入式 Kafka 代理时,才需要测试范围依赖项。spring-doc.cn