1 package de.juplo.kafka.wordcount.counter;
6 import lombok.ToString;
7 import org.springframework.boot.context.properties.ConfigurationProperties;
10 @ConfigurationProperties("juplo.wordcount.counter")
14 public class CounterApplicationProperties
16 private String bootstrapServer = "localhost:9092";
17 private String applicationId = "counter";
18 private String inputTopic = "words";
19 private String outputTopic = "countings";