WIP
authorKai Moritz <kai@juplo.de>
Wed, 13 Oct 2021 20:40:52 +0000 (22:40 +0200)
committerKai Moritz <kai@juplo.de>
Wed, 13 Oct 2021 20:40:52 +0000 (22:40 +0200)
src/main/java/de/juplo/kafka/wordcount/counter/CounterStreamProcessor.java

index 991f704..4763cb0 100644 (file)
@@ -63,7 +63,7 @@ public class CounterStreamProcessor
                props.put(StreamsConfig.APPLICATION_ID_CONFIG, properties.getApplicationId());
                props.put(StreamsConfig.BOOTSTRAP_SERVERS_CONFIG, properties.getBootstrapServer());
                props.put(StreamsConfig.DEFAULT_KEY_SERDE_CLASS_CONFIG, SpecificAvroSerde.class);
-               props.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.Long().getClass().getName());
+               props.put(StreamsConfig.DEFAULT_VALUE_SERDE_CLASS_CONFIG, Serdes.Long().getClass());
                props.put(AbstractKafkaSchemaSerDeConfig.SCHEMA_REGISTRY_URL_CONFIG, properties.getSchemaRegistry());
                props.put(ConsumerConfig.AUTO_OFFSET_RESET_CONFIG, "earliest");