1
I can’t stop a Quarkus application.
After starting a Quarkus application (quarkus.io) even after closing it with Ctrl+C (by command prompt) or clicking the Eclipse Stop button, it still stands. Example: if it goes up to port 8080, even after I stop the application if I type localhost:8080 in the browser the application keeps responding. Another example: if it has a Schedule, it tbm continues running.
I have tried with 3 different projects, with different java versions, different eclipses and even different machines. Always the same problem occurs. I believe there must be some command, parameter or configuration that I should be leaving.
Tried applying in the life cycle itself with
Quarkus.waitForExit()
orQuarkus.asyncExit();
within the methodpublic int run(String... args)
?– Guilherme Nascimento