1034a9826d8ac7714117d78c04a0e4ef6eb1fb04
[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 message = "example message";
19
20
21       if (args.length > 0) {
22         message = args[0];
23       }
24
25       sender.sendMessage(message);
26     };
27   }
28
29 }