blob: 7f3e4603c0852f2dbe823f508681af5ce40a6236 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.guacamole;
import com.google.inject.Injector;
import javax.inject.Inject;
import javax.servlet.ServletContext;
import javax.ws.rs.ApplicationPath;
import org.glassfish.hk2.api.ServiceLocator;
import org.glassfish.jersey.jackson.JacksonFeature;
import org.glassfish.jersey.server.ResourceConfig;
import org.jvnet.hk2.guice.bridge.api.GuiceBridge;
import org.jvnet.hk2.guice.bridge.api.GuiceIntoHK2Bridge;
import org.slf4j.bridge.SLF4JBridgeHandler;
/**
* JAX-RS Application which serves as the root definition of the Guacamole
* REST API. The HK2 dependency injection used by Jersey is automatically
* bridged to Guice, allowing injections managed by Guice to be injected within
* classes served by Jersey.
*/
@ApplicationPath("/*")
public class GuacamoleApplication extends ResourceConfig {
/**
* Creates a new GuacamoleApplication which defines the Guacamole REST API,
* automatically configuring Jersey's HK2 dependency injection to
* additionally pull services from a Guice injector.
*
* @param servletContext
* The ServletContext which has already associated with a Guice
* injector via a GuacamoleServletContextListener.
*
* @param serviceLocator
* The HK2 service locator (injector).
*/
@Inject
public GuacamoleApplication(ServletContext servletContext,
ServiceLocator serviceLocator) {
// Bridge Jersey logging (java.util.logging) to SLF4J
SLF4JBridgeHandler.removeHandlersForRootLogger();
SLF4JBridgeHandler.install();
// Bridge HK2 service locator with Guice injector
Injector guiceInjector = (Injector) servletContext.getAttribute(GuacamoleServletContextListener.GUICE_INJECTOR);
GuiceBridge.getGuiceBridge().initializeGuiceBridge(serviceLocator);
GuiceIntoHK2Bridge bridge = serviceLocator.getService(GuiceIntoHK2Bridge.class);
bridge.bridgeGuiceInjector(guiceInjector);
// Automatically scan for REST resources
packages("org.apache.guacamole.rest");
// Use Jackson for JSON
register(JacksonFeature.class);
}
}