com.sun.jersey.spi.container.servlet.package-info Maven / Gradle / Ivy
Show all versions of jersey-bundle Show documentation
/*
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 1997-2007 Sun Microsystems, Inc. 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 https://jersey.dev.java.net/CDDL+GPL.html
* or jersey/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 jersey/legal/LICENSE.txt.
* Sun designates this particular file as subject to the "Classpath" exception
* as provided by Sun in the GPL Version 2 section of the License file that
* accompanied this code. If applicable, add the following below the License
* Header, with the fields enclosed by brackets [] replaced by your own
* identifying information: "Portions Copyrighted [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 servlet-based and filter-based Web applications.
*
* Web application support is enabled by referencing the servlet
* {@link com.sun.jersey.spi.container.servlet.ServletContainer} in the
* web.xml.
*
* For example, the following will deploy Jersey and automatically
* register any root resource or provider classes present in the directory
* "/WEB-INF/classes" or jar files present in the directory "/WEB-INF/lib":
*
* <web-app>
* <servlet>
* <servlet-name>Jersey Web Application</servlet-name>
* <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class>
* </servlet>
* <servlet-mapping>
* <servlet-name>Jersey Web Application</servlet-name>
* <url-pattern>/*</url-pattern>
* </servlet-mapping>
* </web-app>
*
* * A deployment approach, that is more portable with respect to maven and * application servers, is to declare the package names where root resource and provider * classes reside. For example, the following will deploy Jersey and * automatically register any root resource or provider classes present * in the package "managed", or any sub-packages. *
* The deployment approach that is portable accross JAX-RS implementations is to * register an implementation of {@link javax.ws.rs.core.Application}. For * example given an implementation as follows: ** <web-app> * <servlet> * <servlet-name>Jersey Web Application</servlet-name> * <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class> * <init-param> * <param-name>com.sun.jersey.config.property.packages</param-name> * <param-value>managed</param-value> * </init-param> * </servlet> * <servlet-mapping> * <servlet-name>Jersey Web Application</servlet-name> * <url-pattern>/*</url-pattern> * </servlet-mapping> * </web-app> *
* then that implementation can be registered as follows: ** package com.foo; * * import ... * * public class MyApplicaton extends Application { * public Set> getClasses() { * Set > s = new HashSet >(); * s.add(HelloWorldResource.class); * return s; * } * } *
* It is possible to combine package-based registration and {@link Application} * registered by extending {@link com.sun.jersey.api.core.PackagesResourceConfig} * and registering the extended class, for example: ** <web-app> * <servlet> * <servlet-name>Jersey Web Application</servlet-name> * <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class> * <init-param> * <param-name>javax.ws.rs.Application</param-name> * <param-value>com.foo.MyApplication</param-value> * </init-param> * </servlet> * <servlet-mapping> * <servlet-name>Jersey Web Application</servlet-name> * <url-pattern>/*</url-pattern> * </servlet-mapping> * </web-app> *
* The above examples apply to Servlet-based configurations but they equally * applicable to Filter-based configurations. For example, the following * presents the same package-based configuration as above but utilizing a filter: ** public class MyApplication extends PackagesResourceConfig { * public MyApplication() { * super("org.foo.rest;org.bar.rest"); * } * } *
* */ package com.sun.jersey.spi.container.servlet;* <web-app> * <filter> * <filter-name>Jersey Web Application</filter-name> * <filter-class>com.sun.jersey.spi.container.servlet.ServletContainer</filter-class> * <init-param> * <param-name>com.sun.jersey.config.property.packages</param-name> * <param-value>managed</param-value> * </init-param> * </filter> * <filter-mapping> * <filter-name>Jersey Web Application</filter-name> * <url-pattern>/*</url-pattern> * </filter-mapping> * </web-app> *