1 package de.juplo.kafka;
5 import org.springframework.boot.context.properties.ConfigurationProperties;
7 @ConfigurationProperties(prefix = "producer")
10 public class ApplicationProperties
12 private String bootstrapServer;
13 private String clientId;
16 private Integer batchSize;
17 private Integer lingerMs;
18 private String compressionType;