d513aef3af55294d69683ca6ee1fc79f3239730c
[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.cloud.stream.schema.client.EnableSchemaRegistryClient;
7 import org.springframework.context.annotation.Bean;
8
9 @SpringBootApplication
10 @EnableSchemaRegistryClient
11 public class Application {
12
13   public static void main(String[] args) {
14     SpringApplication.run(Application.class);
15   }
16
17   @Bean
18   CommandLineRunner lookup(Sender sender) {
19     return args -> {
20       String message = "example message";
21
22
23       if (args.length > 0) {
24         message = args[0];
25       }
26
27       sender.sendMessage(message);
28     };
29   }
30
31 }