Replaced handwritten property-names by references
authorKai Moritz <kai@juplo.de>
Sat, 30 Jan 2021 15:37:31 +0000 (16:37 +0100)
committerKai Moritz <kai@juplo.de>
Sun, 16 May 2021 21:28:03 +0000 (23:28 +0200)
delivery/src/main/java/de/juplo/kafka/outbox/delivery/OutboxProducer.java

index 79b3e02..49f777f 100644 (file)
@@ -16,6 +16,10 @@ import org.springframework.stereotype.Component;
 
 import javax.annotation.PreDestroy;
 
+import static org.apache.kafka.clients.CommonClientConfigs.BOOTSTRAP_SERVERS_CONFIG;
+import static org.apache.kafka.clients.producer.ProducerConfig.KEY_SERIALIZER_CLASS_CONFIG;
+import static org.apache.kafka.clients.producer.ProducerConfig.VALUE_SERIALIZER_CLASS_CONFIG;
+
 
 @Component
 public class OutboxProducer
@@ -36,9 +40,9 @@ public class OutboxProducer
     this.repository = repository;
 
     Properties props = new Properties();
-    props.put("bootstrap.servers", properties.bootstrapServers);
-    props.put("key.serializer", StringSerializer.class.getName());
-    props.put("value.serializer", StringSerializer.class.getName());
+    props.put(BOOTSTRAP_SERVERS_CONFIG, properties.bootstrapServers);
+    props.put(KEY_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName());
+    props.put(VALUE_SERIALIZER_CLASS_CONFIG, StringSerializer.class.getName());
 
     this.producer = new KafkaProducer<>(props);
     this.topic = properties.topic;