Created
March 24, 2019 07:40
-
-
Save mengjiann/eec093d884cd402f48785a01de1a8bd7 to your computer and use it in GitHub Desktop.
Terminate Spring boot application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SpringApplication springApplication = new SpringApplicationBuilder() | |
.sources(<class name>.class).web(false).build(); | |
springApplication.run(args).close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment