org.apache.cxf.bus.spring.SpringBeanLocator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-bundle-jaxrs Show documentation
Show all versions of cxf-bundle-jaxrs Show documentation
Apache CXF JAX-RS Bundle Jar
/**
* 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.bus.spring;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.apache.cxf.Bus;
import org.apache.cxf.bus.extension.ExtensionManagerImpl;
import org.apache.cxf.configuration.ConfiguredBeanLocator;
import org.osgi.framework.ServiceReference;
import org.springframework.beans.Mergeable;
import org.springframework.beans.PropertyValue;
import org.springframework.beans.factory.config.BeanDefinition;
import org.springframework.beans.factory.config.TypedStringValue;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ConfigurableApplicationContext;
/**
*
*/
public class SpringBeanLocator implements ConfiguredBeanLocator {
ApplicationContext context;
ConfiguredBeanLocator orig;
Set passThroughs = new HashSet();
Object bundleContext;
boolean osgi = true;
public SpringBeanLocator(ApplicationContext ctx, Bus bus) {
context = ctx;
orig = bus.getExtension(ConfiguredBeanLocator.class);
if (orig instanceof ExtensionManagerImpl) {
List names = new ArrayList();
for (String s : ctx.getBeanDefinitionNames()) {
ConfigurableApplicationContext ctxt = (ConfigurableApplicationContext)context;
BeanDefinition def = ctxt.getBeanFactory().getBeanDefinition(s);
String cn = def.getBeanClassName();
if (OldSpringSupport.class.getName().equals(cn)) {
passThroughs.add(s);
for (String s2 : ctx.getAliases(s)) {
passThroughs.add(s2);
}
} else {
names.add(s);
for (String s2 : ctx.getAliases(s)) {
names.add(s2);
}
}
}
((ExtensionManagerImpl)orig).removeBeansOfNames(names);
}
loadOSGIContext(bus);
}
private void loadOSGIContext(Bus b) {
try {
//use a little reflection to allow this to work without the spring-dm jars
//for the non-osgi cases
Method m = context.getClass().getMethod("getBundleContext");
bundleContext = m.invoke(context);
@SuppressWarnings("unchecked")
Class
© 2015 - 2025 Weber Informatics LLC | Privacy Policy