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

org.apache.cxf.jaxrs.JAXRSServerFactoryBean Maven / Gradle / Ivy

There is a newer version: 3.0.0-milestone2
Show newest version
/**
 * 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.cxf.jaxrs;

import java.io.IOException;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.ws.rs.core.Application;

import org.apache.cxf.BusException;
import org.apache.cxf.endpoint.Endpoint;
import org.apache.cxf.endpoint.EndpointException;
import org.apache.cxf.endpoint.Server;
import org.apache.cxf.endpoint.ServerImpl;
import org.apache.cxf.feature.AbstractFeature;
import org.apache.cxf.helpers.CastUtils;
import org.apache.cxf.jaxrs.ext.ResourceComparator;
import org.apache.cxf.jaxrs.impl.RequestPreprocessor;
import org.apache.cxf.jaxrs.lifecycle.PerRequestResourceProvider;
import org.apache.cxf.jaxrs.lifecycle.ResourceProvider;
import org.apache.cxf.jaxrs.model.ClassResourceInfo;
import org.apache.cxf.jaxrs.model.ProviderInfo;
import org.apache.cxf.jaxrs.provider.ProviderFactory;
import org.apache.cxf.jaxrs.utils.InjectionUtils;
import org.apache.cxf.service.factory.FactoryBeanListener;
import org.apache.cxf.service.factory.ServiceConstructionException;
import org.apache.cxf.service.invoker.Invoker;


/**
 * Bean to help easily create Server endpoints for JAX-RS. Example:
 * 
 * JAXRSServerFactoryBean sf = JAXRSServerFactoryBean();
 * sf.setResourceClasses(Book.class);
 * sf.setBindingId(JAXRSBindingFactory.JAXRS_BINDING_ID);
 * sf.setAddress("http://localhost:9080/");
 * sf.create();
 * 
* This will start a server for you and register it with the ServerManager. */ public class JAXRSServerFactoryBean extends AbstractJAXRSFactoryBean { protected Map resourceProviders = new HashMap(); private Server server; private boolean start = true; private Map languageMappings; private Map extensionMappings; private ResourceComparator rc; private ProviderInfo appProvider; public JAXRSServerFactoryBean() { this(new JAXRSServiceFactoryBean()); } public JAXRSServerFactoryBean(JAXRSServiceFactoryBean sf) { super(sf); } /** * Saves the reference to the JAX-RS {@link Application} * @param app */ public void setApplication(Application app) { appProvider = new ProviderInfo(app); } /** * Resource comparator which may be used to customize the way * a root resource or resource method is selected * @param rcomp comparator */ public void setResourceComparator(ResourceComparator rcomp) { rc = rcomp; } /** * By default the subresources are resolved dynamically, mainly due to * the JAX-RS specification allowing Objects being returned from the subresource * locators. Setting this property to true enables the runtime to do the * early resolution. * * @param enableStatic enabling the static resolution if set to true */ public void setStaticSubresourceResolution(boolean enableStatic) { serviceFactory.setEnableStaticResolution(enableStatic); } /** * Creates the JAX-RS Server instance * @return the server */ public Server create() { try { serviceFactory.setBus(getBus()); checkResources(true); if (serviceFactory.getService() == null) { serviceFactory.create(); updateClassResourceProviders(); } Endpoint ep = createEndpoint(); server = new ServerImpl(getBus(), ep, getDestinationFactory(), getBindingFactory()); Invoker invoker = serviceFactory.getInvoker(); if (invoker == null) { ep.getService().setInvoker(createInvoker()); } else { ep.getService().setInvoker(invoker); } ProviderFactory factory = setupFactory(ep); ep.put(Application.class.getName(), appProvider); factory.setApplicationProvider(appProvider); factory.setRequestPreprocessor( new RequestPreprocessor(languageMappings, extensionMappings)); if (rc != null) { ep.put("org.apache.cxf.jaxrs.comparator", rc); } checkPrivateEndpoint(ep); getServiceFactory().sendEvent(FactoryBeanListener.Event.SERVER_CREATED, server, null, null); applyFeatures(); if (start) { server.start(); } } catch (EndpointException e) { throw new ServiceConstructionException(e); } catch (BusException e) { throw new ServiceConstructionException(e); } catch (IOException e) { throw new ServiceConstructionException(e); } catch (Exception e) { throw new ServiceConstructionException(e); } return server; } protected void applyFeatures() { if (getFeatures() != null) { for (AbstractFeature feature : getFeatures()) { feature.initialize(server, getBus()); } } } protected Invoker createInvoker() { return new JAXRSInvoker(); } /** * Sets the language mappings, * example, 'en' is the key and 'en-gb' is the value. * * @param lMaps the language mappings */ public void setLanguageMappings(Map lMaps) { languageMappings = lMaps; } /** * Sets the extension mappings, * example, 'xml' is the key and 'text/xml' is the value. * * @param lMaps the extension mappings */ public void setExtensionMappings(Map extMaps) { extensionMappings = extMaps; } public List> getResourceClasses() { return serviceFactory.getResourceClasses(); } /** * This method is used primarily by Spring handler processing * the jaxrs:server/@serviceClass attribute. It delegates to * setResourceClasses method accepting the array of Class parameters. * @param clazz the service/resource class */ public void setServiceClass(Class clazz) { serviceFactory.setResourceClasses(clazz); } /** * Sets one or more root resource classes * @param classes the list of resource classes */ public void setResourceClasses(List classes) { serviceFactory.setResourceClasses(classes); } /** * Sets one or more root resource classes * @param classes the array of resource classes */ public void setResourceClasses(Class... classes) { serviceFactory.setResourceClasses(classes); } /** * Sets the resource beans. If this is set then the JAX-RS runtime * will not be responsible for the life-cycle of resource classes. * * @param beans the array of resource instances */ public void setServiceBeanObjects(Object... beans) { setServiceBeans(Arrays.asList(beans)); } /** * Sets the single resource bean. If this is set then the JAX-RS runtime * will not be responsible for the life-cycle of resource classes. * Please avoid setting the resource class of this bean explicitly, * the runtime will determine it itself. * * @param bean resource instance */ public void setServiceBean(Object bean) { setServiceBeans(Arrays.asList(bean)); } /** * Sets the resource beans. If this is set then the JAX-RS runtime * will not be responsible for the life-cycle of resource classes. * * @param beans the list of resource instances */ public void setServiceBeans(List beans) { serviceFactory.setResourceClassesFromBeans(beans); } /** * Sets the provider managing the life-cycle of the given resource class *
     * Example:
     *  setResourceProvider(BookStoreInterface.class, new SingletonResourceProvider(new BookStore()));
     * 
* @param c resource class * @param rp resource provider */ public void setResourceProvider(Class c, ResourceProvider rp) { resourceProviders.put(c, rp); } /** * Sets the provider managing the life-cycle of the resource class *
     * Example:
     *  setResourceProvider(new SingletonResourceProvider(new BookStore()));
     * 
* @param rp resource provider */ public void setResourceProvider(ResourceProvider rp) { setResourceProviders(CastUtils.cast(Collections.singletonList(rp), ResourceProvider.class)); } /** * Sets the list of providers managing the life-cycle of the resource classes * * @param rps resource providers */ public void setResourceProviders(List rps) { for (ResourceProvider rp : rps) { Class c = rp.getResourceClass(); setServiceClass(c); resourceProviders.put(c, rp); } } /** * Sets the custom Invoker which can be used to customize the way * the default JAX-RS invoker calls on the service bean * @param invoker */ public void setInvoker(Invoker invoker) { serviceFactory.setInvoker(invoker); } /** * Can be used to postpone starting the Server instance during the create() call. * @param start Server instance will not be started during the create() call if set to false * default is true. */ public void setStart(boolean start) { this.start = start; } private void injectContexts() { Application application = appProvider == null ? null : appProvider.getProvider(); for (ClassResourceInfo cri : serviceFactory.getClassResourceInfo()) { if (cri.isSingleton()) { InjectionUtils.injectContextProxiesAndApplication(cri, cri.getResourceProvider().getInstance(null), application); } } if (application != null) { InjectionUtils.injectContextProxiesAndApplication(appProvider, application, null); } } private void updateClassResourceProviders() { for (ClassResourceInfo cri : serviceFactory.getClassResourceInfo()) { if (cri.getResourceProvider() != null) { continue; } ResourceProvider rp = resourceProviders.get(cri.getResourceClass()); if (rp != null) { cri.setResourceProvider(rp); } else { //default lifecycle is per-request rp = new PerRequestResourceProvider(cri.getResourceClass()); cri.setResourceProvider(rp); } } injectContexts(); } }