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

com.sun.jersey.guice.spi.container.servlet.package-info Maven / Gradle / Ivy

/*
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2010-2011 Oracle and/or its affiliates. All rights reserved.
 *
 * The contents of this file are subject to the terms of either the GNU
 * General Public License Version 2 only ("GPL") or the Common Development
 * and Distribution License("CDDL") (collectively, the "License").  You
 * may not use this file except in compliance with the License.  You can
 * obtain a copy of the License at
 * http://glassfish.java.net/public/CDDL+GPL_1_1.html
 * or packager/legal/LICENSE.txt.  See the License for the specific
 * language governing permissions and limitations under the License.
 *
 * When distributing the software, include this License Header Notice in each
 * file and include the License file at packager/legal/LICENSE.txt.
 *
 * GPL Classpath Exception:
 * Oracle designates this particular file as subject to the "Classpath"
 * exception as provided by Oracle in the GPL Version 2 section of the License
 * file that accompanied this code.
 *
 * Modifications:
 * If applicable, add the following below the License Header, with the fields
 * enclosed by brackets [] replaced by your own identifying information:
 * "Portions Copyright [year] [name of copyright owner]"
 *
 * Contributor(s):
 * If you wish your version of this file to be governed by only the CDDL or
 * only the GPL Version 2, indicate your decision by adding "[Contributor]
 * elects to include this software in this distribution under the [CDDL or GPL
 * Version 2] license."  If you don't indicate a single choice of license, a
 * recipient has the option to distribute your version of this file under
 * either the CDDL, the GPL Version 2 or to extend the choice of license to
 * its licensees as provided above.  However, if you add GPL Version 2 code
 * and therefore, elected the GPL Version 2 license, then the option applies
 * only if the new code is made subject to such option by the copyright
 * holder.
 */

/**
 * Provides support for Guice-based Web applications.
 * 

* Guice support is enabled by referencing the Guice filter * {@link com.google.inject.servlet.GuiceFilter} and an application * specific {@link javax.servlet.ServletContextListener} that extends from * {@link com.google.inject.servlet.GuiceServletContextListener} in the web.xml. * For example, the web.xml may be as follows: *

 *   <web-app>
 *     <listener>
 *       <listener-class>foo.MyGuiceConfig</listener-class>
 *     </listener>
 *     <filter>
 *       <filter-name>Guice Filter</filter-name>
 *       <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
 *     </filter>
 *     <filter-mapping>
 *       <filter-name>Guice Filter</filter-name>
 *       <url-pattern>/*</url-pattern>
 *     </filter-mapping>
 *   </web-app>
 * 
* and the application specific servlet context listener may be as follows: *
 *     package foo;
 * 
 *     import com.google.inject.Guice;
 *     import com.google.inject.Injector;
 *     import com.google.inject.servlet.GuiceServletContextListener;
 *     import com.google.inject.servlet.ServletModule;
 *     import com.sun.jersey.guice.spi.container.servlet.GuiceContainer;
 *     import com.sun.jersey.guice.JerseyServletModule;
 *     import foo.GuiceResource;
 *     
 *     public class MyGuiceConfig extends GuiceServletContextListener {
 * 
 *         @Override
 *         protected Injector getInjector() {
 *             return Guice.createInjector(new JerseyServletModule() {
 * 
 *                 @Override
 *                 protected void configureServlets() {
 *                     bind(GuiceResource.class);
 * 
 *                     serve("/*").with(GuiceContainer.class);
 *                 }
 *         });
 *     } 
 * }
 * 
* Notice that one class GuiceResource is bound and the * {@link com.sun.jersey.guice.spi.container.servlet.GuiceContainer} is * declared in the serve method. A instance of * module {@link com.sun.jersey.guice.JerseyServletModule} is created. This * module extends from {@link com.google.inject.servlet.ServletModule} and * provides JAX-RS and Jersey bindings. *

* Instances of * GuiceResource will be managed according to the scope declared * using Guice defined scopes. For example the GuiceResource * could be as follows: *

 *    package foo;
 * 
 *    import javax.ws.rs.GET;
 *    import javax.ws.rs.Produces;
 *    import javax.ws.rs.Path;
 *    import javax.ws.rs.QueryParam;
 *    import javax.enterprise.context.RequestScoped;
 * 
 *    @Path("bound/perrequest")
 *    @RequestScoped
 *    public class GuiceResource {
 * 
 *        @QueryParam("x") String x;
 * 
 *        @GET
 *        @Produces("text/plain")
 *        public String getIt() {
 *            return "Hello From Guice: " + x;
 *        }     
 *    }
 * 
*

* Any root resource or provider classes bound by Guice * will be automatically registered. It is possible to intermix Guice and * non-Guice registration of classes by additionally using the normal * Jersey-based registration mechanisms in the servlet context listener * implementation. For example: *

 *     package foo;
 *
 *     import com.google.inject.Guice;
 *     import com.google.inject.Injector;
 *     import com.google.inject.servlet.GuiceServletContextListener;
 *     import com.google.inject.servlet.ServletModule;
 *     import com.sun.jersey.api.core.PackagesResourceConfig;
 *     import com.sun.jersey.guice.spi.container.servlet.GuiceContainer;
 *     import com.sun.jersey.guice.JerseyServletModule;
 *     import foo.GuiceResource;
 *     import java.util.HashMap;
 *     import java.util.Map; 
 * 
 *     public class GuiceServletConfig extends GuiceServletContextListener {
 * 
 *         @Override
 *         protected Injector getInjector() {
 *             return Guice.createInjector(new JerseyServletModule() {
 * 
 *                 @Override
 *                 protected void configureServlets() {
 *                     bind(GuiceResource.class);
 *
 *                     Map<String, String> params = new HashMap<String, String>();
 *                     params.put(PackagesResourceConfig.PROPERTY_PACKAGES, "unbound");
 *                     serve("/*").with(GuiceContainer.class, params);
 *                 }
 *             });
 *         }
 *     }
 * 
*

* Any root resource or provider classes found in the package unbound * or sub-packages of will be registered whether they be Guice-bound nor not. *

* Sometimes it is convenient for developers not to explicitly bind a * resource or provider, let Guice instantiate, and let Jersey manage * the life-cycle. This behavior can be enabled for a resource or * provider class as follows: *

    *
  1. a class constructor is annotated with {@link com.google.inject.Inject}; *
  2. the class is not explicitly bound in Guice; and *
  3. the class is registered using a Jersey based registration mechanism, * for example using package scanning registration. *
*

* In other cases it is convenient to let Jersey instantiate and manage * the life-cycle and let Guice perform injection. This behavior can be * enabled for a resource or provider class as follows: *

    *
  1. a field or method is annotated with {@link com.google.inject.Inject}; *
  2. the class is not explicitly bound in Guice; and *
  3. the class is registered using a Jersey based registration mechanism, * for example using package scanning registration. *
*/ package com.sun.jersey.guice.spi.container.servlet;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy