com.sun.jersey.spi.spring.container.servlet.SpringServlet 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.
*/
package com.sun.jersey.spi.spring.container.servlet;
import com.sun.jersey.spi.spring.container.SpringComponentProviderFactory;
import com.sun.jersey.api.core.DefaultResourceConfig;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.web.context.ConfigurableWebApplicationContext;
import org.springframework.web.context.WebApplicationContext;
import org.springframework.web.context.support.WebApplicationContextUtils;
import org.springframework.web.context.support.XmlWebApplicationContext;
import com.sun.jersey.api.core.ResourceConfig;
import com.sun.jersey.core.spi.component.ioc.IoCComponentProviderFactory;
import com.sun.jersey.spi.container.WebApplication;
import com.sun.jersey.spi.container.servlet.ServletContainer;
import com.sun.jersey.spi.container.servlet.WebConfig;
import java.util.Map;
import javax.servlet.ServletException;
/**
* A servlet or filter for deploying root resource classes with Spring
* integration.
*
* This class extends {@link ServletContainer} and initiates the
* {@link WebApplication} with a Spring-based {@link IoCComponentProviderFactory},
* {@link SpringComponentProviderFactory}, such that instances of resource and
* provider classes declared and managed by Spring can be obtained.
*
* Classes of Spring beans declared using XML-based configuration or
* auto-wire-based confguration will be automatically registered if such
* classes are root resource classes or provider classes. It is not necessary
* to provide initialization parameters for declaring classes in the web.xml
* unless a mixture of Spring-managed and Jersey-managed classes is required.
*
* The servlet supports configuration of child applicationContexts,
* see {@link #CONTEXT_CONFIG_LOCATION}.
*
*
* @author Martin Grotzke
* @author [email protected]
* @author [email protected]
*/
public class SpringServlet extends ServletContainer {
private static final long serialVersionUID = 5686655395749077671L;
private static final Logger LOGGER = Logger.getLogger(SpringServlet.class.getName());
/**
* The context configuration location initialization parameter for declaring
* that a child context should be used for bean definitions. This feature
* can be used when configuration multiple Jersey/Spring servlets that
* contain different SPring-managed resources.
*
* The parameter name is the String "contextConfigLocation".
*
* A parameter value is a reference to one more spring configuration files
* separated by commas, semicolons or whitespace.
*
* distinct locations separated by commas, semicolons or whitespace
*
* If this parameter is absent then the default application context
* configuration is utilized.
*/
public static final String CONTEXT_CONFIG_LOCATION = "contextConfigLocation";
@Override
protected ResourceConfig getDefaultResourceConfig(Map props,
WebConfig webConfig) throws ServletException {
return new DefaultResourceConfig();
}
@Override
protected void initiate(ResourceConfig rc, WebApplication wa) {
try {
wa.initiate(rc, new SpringComponentProviderFactory(rc, getContext()));
} catch (RuntimeException e) {
LOGGER.log(Level.SEVERE, "Exception occurred when intialization", e);
throw e;
}
}
/**
* Get the application context.
*
* If the initialization parameter {@link #CONTEXT_CONFIG_LOCATION}
* is present then this method will invoke {@link #getChildContext(java.lang.String) }
* otherwise this method will invoke {@link #getDefaultContext() }.
*
* @return the application context.
*/
protected ConfigurableApplicationContext getContext() {
final String contextConfigLocation = getWebConfig().getInitParameter(CONTEXT_CONFIG_LOCATION);
if (contextConfigLocation == null) {
LOGGER.info("Using default applicationContext");
return getDefaultContext();
} else {
LOGGER.info("Creating new child context from " + contextConfigLocation);
return getChildContext(contextConfigLocation);
}
}
/**
* Get the default application context.
*
* The default application context will be looked up from the servlet
* context using {@link WebApplicationContextUtils#getRequiredWebApplicationContext(javax.servlet.ServletContext) }.
*
* @return the default application context.
*/
protected ConfigurableApplicationContext getDefaultContext() {
final WebApplicationContext springWebContext =
WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
final ConfigurableApplicationContext springContext =
(ConfigurableApplicationContext) springWebContext;
return springContext;
}
/**
* Get the child application context.
*
* The child application context is created as a child of the default
* application context obtained from {@link #getDefaultContext() }.
*
* @param contextConfigLocation the location of the child application
* context.
* @return the child application context.
*/
protected ConfigurableApplicationContext getChildContext(String contextConfigLocation) {
final ConfigurableWebApplicationContext ctx = new XmlWebApplicationContext();
ctx.setParent(getDefaultContext());
ctx.setServletContext(getServletContext());
ctx.setConfigLocation(contextConfigLocation);
ctx.refresh();
return ctx;
}
}