Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/**
* 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.Array;
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 java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.cxf.Bus;
import org.apache.cxf.bus.extension.ExtensionManagerImpl;
import org.apache.cxf.common.logging.LogUtils;
import org.apache.cxf.common.util.ReflectionUtil;
import org.apache.cxf.configuration.ConfiguredBeanLocator;
import org.springframework.beans.Mergeable;
import org.springframework.beans.PropertyValue;
import org.springframework.beans.factory.NoSuchBeanDefinitionException;
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 {
private static final Logger LOG = LogUtils.getL7dLogger(SpringBeanLocator.class);
ApplicationContext context;
ConfiguredBeanLocator orig;
Set passThroughs = new HashSet();
Object bundleContext;
boolean osgi = true;
public SpringBeanLocator(ApplicationContext ctx) {
this(ctx, null);
}
public SpringBeanLocator(ApplicationContext ctx, Bus bus) {
context = ctx;
if (bus != null) {
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) {
bundleContext = findBundleContext(context, b);
if (bundleContext == null) {
osgi = false;
}
}
private Object findBundleContext(ApplicationContext applicationContext, Bus b) {
Object answer = null;
ApplicationContext aContext = applicationContext;
// try to find out the bundleContext by going through the parent context
while (aContext != null && answer == null) {
answer = getBundleContext(aContext, b);
aContext = aContext.getParent();
}
return answer;
}
private Object getBundleContext(ApplicationContext applicationContext, Bus b) {
try {
//use a little reflection to allow this to work without the spring-dm jars
//for the non-osgi cases
Method m = applicationContext.getClass().getMethod("getBundleContext");
Object o = m.invoke(applicationContext);
if (o != null && b != null) {
@SuppressWarnings("unchecked")
Class