gpt4 book ai didi

java - 无法在 Windows 上使用 kafka-run-class.bat 运行类

转载 作者:行者123 更新时间:2023-12-02 09:28:55 25 4
gpt4 key购买 nike

我使用 KafkaStream API 创建了一个演示应用程序。尝试使用 kafka-run-class.bat 文件运行应用程序但出现错误“无法找到或加载主类 com.kafka.StreamApp”

这是我的类(class)的路径:“C:\Users\ankit.srivastava\eclipse-workspace\kafka-demo\src\main\java\com\kafka”

我已将 CLASSPATH 环境变量设置为:

“C:\Users\ankit.srivastava\eclipse-workspace\kafka-demo\src\main\java”

我尝试运行从“C:\Users\ankit.srivastava\Documents\Kafka\kafka”启动应用程序的命令:

“bin\windows\kafka-run-class.bat com.kafka.StreamApp”

public class StreamApp {


public static void main(String[] args) {

Properties props = new Properties();
props.put(StreamsConfig.APPLICATION_ID_CONFIG, "wordcount-application");
props.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, "localhost:9092");
props.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, Serdes.String().getClass());
props.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.String().getClass());

StreamsBuilder builder = new StreamsBuilder();
KStream<String, String> textLines = builder.stream("TextLinesTopic");
KTable<String, Long> wordCounts = textLines
.flatMapValues(textLine -> Arrays.asList(textLine.toLowerCase().split("\\W+")))
.groupBy((key, word) -> word)
.count(Materialized.<String, Long, KeyValueStore<Bytes, byte[]>>as("counts-store"));
wordCounts.toStream().to("WordsWithCountsTopic", Produced.with(Serdes.String(), Serdes.Long()));

KafkaStreams streams = new KafkaStreams(builder.build(), props);
streams.start();
}

}

由于我的项目文件夹已添加到 CLASSPATH 变量批处理脚本应该已找到该类并启动应用程序,但出现错误
“无法找到或加载主类 com.kafka.StreamApp”

最佳答案

您不需要 kafka-run-class 来运行您自己的消费者或生产者。您应该能够部署和运行您的代码,而无需依赖于在任何计算机上安装 Kafka。

话虽这么说,您只需使用 java 即可正常运行代码。

关于您的错误,它不是特定于 Kafka 的。简单地说,您已将 CLASSPATH 指向 Java 文件,而不是已编译的类文件。

根据文件的路径,似乎您可能正在使用 Maven 或 Gradle,因此我建议使用从这些文件构建的 JAR 文件

根据您之前的问题,我建议使用 Spring-Kafka 或 Spring Cloud Streams 来简化代码的配置

关于java - 无法在 Windows 上使用 kafka-run-class.bat 运行类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58128938/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com