1 package de.juplo.kafka;
3 import lombok.extern.slf4j.Slf4j;
4 import org.springframework.beans.factory.annotation.Autowired;
5 import org.springframework.boot.ApplicationArguments;
6 import org.springframework.boot.ApplicationRunner;
7 import org.springframework.boot.SpringApplication;
8 import org.springframework.boot.autoconfigure.SpringBootApplication;
10 import javax.annotation.PreDestroy;
11 import java.util.List;
12 import java.util.concurrent.ExecutorService;
13 import java.util.concurrent.TimeUnit;
16 @SpringBootApplication
18 public class Application implements ApplicationRunner
21 EndlessConsumer endlessConsumer;
23 ExecutorService executor;
27 public void run(ApplicationArguments args) throws Exception
29 log.info("Starting EndlessConsumer");
30 endlessConsumer.start();
34 public void stopExecutor()
38 log.info("Shutting down the ExecutorService.");
40 log.info("Waiting 5 seconds for the ExecutorService to terminate...");
41 executor.awaitTermination(5, TimeUnit.SECONDS);
43 catch (InterruptedException e)
45 log.error("Exception while waiting for the termination of the ExecutorService: {}", e.toString());
49 if (!executor.isTerminated())
51 log.warn("Forcing shutdown of ExecutorService!");
54 .forEach(runnable -> log.warn("Unprocessed task: {}", runnable.getClass().getSimpleName()));
56 log.info("Shutdow of ExecutorService finished");
61 public static void main(String[] args)
63 SpringApplication.run(Application.class, args);