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

org.polyglotted.webapp.launcher.Main Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package org.polyglotted.webapp.launcher;

public class Main {

    public static void main(String... anArgs) throws Exception {

        final WebServer server = new WebServer();
        Runtime.getRuntime().addShutdownHook(new Thread() {
            @Override
            public void run() {
                try {
                    System.out.println("Shutting down webserver");
                    server.stop();
                } catch (Exception e) {
                }
            }
        });
        server.start();
        server.join();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy