RÜCKBAU für Rebase der Folge-Branches
authorKai Moritz <kai@juplo.de>
Wed, 12 Mar 2025 05:45:10 +0000 (06:45 +0100)
committerKai Moritz <kai@juplo.de>
Fri, 14 Mar 2025 15:51:26 +0000 (16:51 +0100)
src/main/java/de/juplo/kafka/ExampleConsumer.java

index 865e5cb..891af89 100644 (file)
@@ -98,26 +98,25 @@ public class ExampleConsumer
 
   public static void main(String[] args) throws Exception
   {
-    if (args.length != 4)
+    String broker = ":9092";
+    String topic = "test";
+    String groupId = "my-group";
+    String clientId = "DEV";
+
+    switch (args.length)
     {
-      log.error("Four arguments required!");
-      log.error("args[0]: Broker-Address");
-      log.error("args[1]: Topic");
-      log.error("args[2]: Group-ID");
-      log.error("args[3]: Unique Client-ID");
-      System.exit(1);
-      return;
+      case 4:
+        clientId = args[3];
+      case 3:
+        groupId = args[2];
+      case 2:
+        topic = args[1];
+      case 1:
+        broker = args[0];
     }
 
 
-    log.info(
-      "Running ExampleConsumer: broker={}, topic={}, group-id={}, client-id={}",
-      args[0],
-      args[1],
-      args[2],
-      args[3]);
-
-    ExampleConsumer instance = new ExampleConsumer(args[0], args[1], args[2], args[3]);
+    ExampleConsumer instance = new ExampleConsumer(broker, topic, groupId, clientId);
 
     Runtime.getRuntime().addShutdownHook(new Thread(() ->
     {
@@ -135,7 +134,12 @@ public class ExampleConsumer
       log.info("Shutdown completed.");
     }));
 
+    log.info(
+      "Running ExampleConsumer: broker={}, topic={}, group-id={}, client-id={}",
+      broker,
+      topic,
+      groupId,
+      clientId);
     instance.run();
   }
 }
-