7448902a24a1959996685434baa62e827ab2674e
[JavaForFun] /
1 package de.example.spring.kafka;
2
3 import org.springframework.boot.CommandLineRunner;
4 import org.springframework.boot.SpringApplication;
5 import org.springframework.boot.autoconfigure.SpringBootApplication;
6 import org.springframework.context.annotation.Bean;
7
8 @SpringBootApplication
9 public class Application {
10
11   public static void main(String[] args) {
12     SpringApplication.run(Application.class);
13   }
14
15   @Bean
16   CommandLineRunner lookup(Sender sender) {
17     return args -> {
18       String topic = "example.topic";
19       String message = "example message";
20
21
22       if (args.length > 0) {
23         topic = args[0];
24         message = args[1];
25       }
26
27       sender.sendMessage(topic, message);
28     };
29   }
30
31 }