In my application I start embedded Undertow in program main method. In all tutorials stop
method is not used. If I run appliction from terminal or from IntelliJ and stop it (CTRL+C or stop icon) I see
Process finished with exit code 1
I tried adding
Runtime.getRuntime().addShutdownHook(new Thread(undertow::stop));
but result is the same.
Where should I call stop
method?
Here is a sample builder api which can be altered(just a sample) to stop after performing a console logging as: