App.java
/*
* Copyright (c) 2012, 2018 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Distribution License v. 1.0, which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
package org.glassfish.jersey.examples.extendedwadl;
import java.io.IOException;
import java.net.URI;
import java.util.HashMap;
import java.util.Map;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.glassfish.jersey.examples.extendedwadl.resources.MyApplication;
import org.glassfish.jersey.grizzly2.servlet.GrizzlyWebContainerFactory;
import org.glassfish.jersey.server.ServerProperties;
import org.glassfish.jersey.servlet.ServletContainer;
import org.glassfish.jersey.servlet.ServletProperties;
import org.glassfish.grizzly.http.server.HttpServer;
/**
* Runner for the Jersey extended-wadl-webapp sample.
*
* @author Miroslav Fuksa
*/
public class App {
private static final URI BASE_URI = URI.create("http://localhost:8080/extended-wadl-webapp");
public static final String ROOT_PATH = "/application.wadl";
public static void main(String[] args) {
try {
System.out.println("Extended WADL web application example");
Map<String, String> initParams = new HashMap<>();
initParams.put(
ServletProperties.JAXRS_APPLICATION_CLASS,
MyApplication.class.getName());
initParams.put(ServerProperties.WADL_GENERATOR_CONFIG, "org.glassfish.jersey.examples.extendedwadl"
+ ".SampleWadlGeneratorConfig");
final HttpServer server = GrizzlyWebContainerFactory.create(BASE_URI, ServletContainer.class, initParams);
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
server.shutdownNow();
}
}));
System.out.println(String.format("Application started.%nTry out %s%s%nStop the application using CTRL+C",
BASE_URI, ROOT_PATH));
Thread.currentThread().join();
} catch (IOException | InterruptedException ex) {
Logger.getLogger(App.class.getName()).log(Level.SEVERE, null, ex);
}
}
}