io.helidon.examples.quickstart.se.Main Maven / Gradle / Ivy
/*
* Copyright (c) 2018 Oracle and/or its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.helidon.examples.quickstart.se;
import java.io.IOException;
import java.util.logging.LogManager;
import io.helidon.config.Config;
import io.helidon.webserver.Routing;
import io.helidon.webserver.ServerConfiguration;
import io.helidon.webserver.WebServer;
import io.helidon.webserver.json.JsonSupport;
/**
* Simple Hello World rest application.
*/
public final class Main {
/**
* Cannot be instantiated.
*/
private Main() { }
/**
* Creates new {@link Routing}.
*
* @return the new instance
*/
private static Routing createRouting() {
return Routing.builder()
.register(JsonSupport.get())
.register("/greet", new GreetService())
.build();
}
/**
* Application main entry point.
* @param args command line arguments.
* @throws IOException if there are problems reading logging properties
*/
public static void main(final String[] args) throws IOException {
startServer();
}
/**
* Start the server.
* @return the created {@link WebServer} instance
* @throws IOException if there are problems reading logging properties
*/
protected static WebServer startServer() throws IOException {
// load logging configuration
LogManager.getLogManager().readConfiguration(
Main.class.getResourceAsStream("/logging.properties"));
// By default this will pick up application.yaml from the classpath
Config config = Config.create();
// Get webserver config from the "server" section of application.yaml
ServerConfiguration serverConfig =
ServerConfiguration.fromConfig(config.get("server"));
WebServer server = WebServer.create(serverConfig, createRouting());
// Start the server and print some info.
server.start().thenAccept(ws -> {
System.out.println(
"WEB server is up! http://localhost:" + ws.port());
});
// Server threads are not demon. NO need to block. Just react.
server.whenShutdown().thenRun(()
-> System.out.println("WEB server is DOWN. Good bye!"));
return server;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy