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.concurrent.ExecutorService;
12 import java.util.concurrent.TimeUnit;
15 @SpringBootApplication
17 public class Application implements ApplicationRunner
20 EndlessConsumer endlessConsumer;
22 ExecutorService executor;
26 public void run(ApplicationArguments args) throws Exception
28 log.info("Starting EndlessConsumer");
29 endlessConsumer.start();
33 public void stopExecutor()
37 log.info("Shutting down the ExecutorService.");
39 log.info("Waiting 5 seconds for the ExecutorService to terminate...");
40 executor.awaitTermination(5, TimeUnit.SECONDS);
42 catch (InterruptedException e)
44 log.error("Exception while waiting for the termination of the ExecutorService: {}", e.toString());
48 if (!executor.isTerminated())
50 log.warn("Forcing shutdown of ExecutorService!");
53 .forEach(runnable -> log.warn("Unprocessed task: {}", runnable.getClass().getSimpleName()));
55 log.info("Shutdow of ExecutorService finished");
60 public static void main(String[] args)
62 SpringApplication.run(Application.class, args);