b8306c53cb1ebdd9abc5aca63c7d86ad8faf3159
[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 = "test";
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(message);
28     };
29   }
30
31 }