c05ba2fe58fbaedafc6c3de1667e4bfb46a29c82
[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[1];
23       }
24
25       sender.sendMessage(message);
26     };
27   }
28
29 }