org.glassfish.jersey.examples.linking.App Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of declarative-linking Show documentation
Show all versions of declarative-linking Show documentation
Declarative Hyperlinking - Jersey Sample
/*
* Copyright (c) 2010, 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.linking;
import java.io.IOException;
import java.net.URI;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.glassfish.jersey.examples.linking.resources.ItemsResource;
import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
import org.glassfish.jersey.linking.DeclarativeLinkingFeature;
import org.glassfish.jersey.server.ResourceConfig;
import org.glassfish.grizzly.http.server.HttpServer;
/**
* Show link injection in action
*
* @author Mark Hadley
* @author Gerard Davison (gerard.davison at oracle.com)
*/
public class App {
private static final URI BASE_URI = URI.create("http://localhost:8080/");
public static final String ROOT_PATH = "items";
public static void main(String[] args) {
try {
System.out.println("\"Declarative Linking\" Jersey Example App");
final ResourceConfig resourceConfig = new ResourceConfig(ItemsResource.class);
resourceConfig.register(DeclarativeLinkingFeature.class);
final HttpServer server = GrizzlyHttpServerFactory.createHttpServer(BASE_URI, resourceConfig, false);
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
@Override
public void run() {
server.shutdownNow();
}
}));
server.start();
System.out.println(String.format("Application started.\nTry out curl -L %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);
}
}
}