kafka testcontainer未运行

v9tzhpje  于 2021-06-04  发布在  Kafka
关注(0)|答案(1)|浏览(341)

我试图为debezium集成设置一个集成测试环境(遵循本例中的说明),但是测试容器(默认图像:confluentinc/cp-kafka:5.2.1)不启动但引发异常。
我使用下面提到的代码创建一个kafkacontainerbean

@Bean
    public KafkaContainer kafkaContainer() {
        if (kafkaContainer == null) {
            kafkaContainer = new KafkaContainer()
                    .withNetwork(network())
                    .withExternalZookeeper("172.17.0.2:2181");

                kafkaContainer.start();
           }
        }

        return kafkaContainer;
    }

它引发以下异常。


***************************

APPLICATION FAILED TO START

***************************

Description:

An attempt was made to call a method that does not exist. The attempt was made from the following location:

    org.testcontainers.containers.KafkaContainer.getBootstrapServers(KafkaContainer.java:91)

The following method did not exist:

    org/testcontainers/containers/KafkaContainer.getHost()Ljava/lang/String;

The method's class, org.testcontainers.containers.KafkaContainer, is available from the following locations:

    jar:file:/home/shubham/.m2/repository/org/testcontainers/kafka/1.14.3/kafka-1.14.3.jar!/org/testcontainers/containers/KafkaContainer.class

The class hierarchy was loaded from the following locations:

    org.testcontainers.containers.KafkaContainer: file:/home/shubham/.m2/repository/org/testcontainers/kafka/1.14.3/kafka-1.14.3.jar
    org.testcontainers.containers.GenericContainer: file:/home/shubham/.m2/repository/org/testcontainers/testcontainers/1.12.5/testcontainers-1.12.5.jar
    org.testcontainers.containers.FailureDetectingExternalResource: file:/home/shubham/.m2/repository/org/testcontainers/testcontainers/1.12.5/testcontainers-1.12.5.jar

Action:

Correct the classpath of your application so that it contains a single, compatible version of org.testcontainers.containers.KafkaContainer

2020-09-10 01:09:49.937 ERROR 72507 --- [           main] o.s.test.context.TestContextManager      : Caught exception while allowing TestExecutionListener
mdfafbf1

mdfafbf11#

在maven依赖项中使用了旧版本的org.testcontainers,而且它工作正常。谢谢!

相关问题