All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.nicoll.boot.daemon.StopSpringBootService Maven / Gradle / Ivy

The newest version!
package net.nicoll.boot.daemon;

/**
 * Stop a Spring Boot application as a service.
 *
 * @author Stephane Nicoll
 */
@SuppressWarnings("hideutilityclassconstructor")
public class StopSpringBootService {

    /**
     * Application Main method.
     *
     * @param args command line arguments to pass to Spring
     *
     * @throws Exception if there is an error starting the server
     */
    public static void main(final String[] args) throws Exception {
        new SpringBootService().stop(args);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy