一直报错:

2023-04-20 17:44:27.836 ERROR 2036 --- [           main] o.s.k.support.LoggingProducerListener    : Exception thrown when sending a message with key='null' and payload='Message(id=1, content=test)' to topic test2:


org.apache.kafka.common.errors.TimeoutException: Topic test2 not present in metadata after 60000 ms.

idea写springboot,配置kafka版本的问题_版本

就是搞不清楚哪里错了,怀疑是版本的问题。果然是版本的问题。

在pom.xml里,用以下版本,解决:

<dependency>
    <groupId>org.apache.kafka</groupId>
    <artifactId>kafka-clients</artifactId>
    <version>3.0.0</version>
</dependency>
<dependency>
            <groupId>org.springframework.kafka</groupId>
            <artifactId>spring-kafka</artifactId>
<!--            <version>2.3.1.RELEASE</version>-->
            <version>2.8.8</version>
        </dependency>
        <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.6.13</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

参考:1、springBoot整合kafka出错

2、spring-kafka、kafka-client 和springboot的版本对应关系

这种无法定位的错误,最麻烦。