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

com.google.inject.spring.SpringIntegration Maven / Gradle / Ivy

There is a newer version: 7.0.0
Show newest version
/*
 * Copyright (C) 2006 Google Inc.
 *
 * Licensed 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 com.google.inject.spring;

import static com.google.common.base.Preconditions.checkNotNull;

import com.google.inject.Binder;
import com.google.inject.Inject;
import com.google.inject.Provider;
import com.google.inject.name.Names;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.beans.factory.ListableBeanFactory;

/**
 * Integrates Guice with Spring.
 *
 * @author [email protected] (Bob Lee)
 */
public class SpringIntegration {
  private SpringIntegration() {}

  /**
   * Creates a provider which looks up objects from Spring using the given name. Expects a binding
   * to {@link org.springframework.beans.factory.BeanFactory}. Example usage:
   *
   * 
   * bind(DataSource.class)
   *   .toProvider(fromSpring(DataSource.class, "dataSource"));
   * 
*/ public static Provider fromSpring(Class type, String name) { return new InjectableSpringProvider(type, name); } /** * Binds all Spring beans from the given factory by name. For a Spring bean named "foo", this * method creates a binding to the bean's type and {@code @Named("foo")}. * * @see com.google.inject.name.Named * @see com.google.inject.name.Names#named(String) */ public static void bindAll(Binder binder, ListableBeanFactory beanFactory) { binder = binder.skipSources(SpringIntegration.class); for (String name : beanFactory.getBeanDefinitionNames()) { Class type = beanFactory.getType(name); bindBean(binder, beanFactory, name, type); } } static void bindBean( Binder binder, ListableBeanFactory beanFactory, String name, Class type) { SpringProvider provider = SpringProvider.newInstance(type, name); try { provider.initialize(beanFactory); } catch (Exception e) { binder.addError(e); return; } binder.bind(type).annotatedWith(Names.named(name)).toProvider(provider); } static class SpringProvider implements Provider { BeanFactory beanFactory; boolean singleton; final Class type; final String name; public SpringProvider(Class type, String name) { this.type = checkNotNull(type, "type"); this.name = checkNotNull(name, "name"); } static SpringProvider newInstance(Class type, String name) { return new SpringProvider(type, name); } void initialize(BeanFactory beanFactory) { this.beanFactory = beanFactory; if (!beanFactory.isTypeMatch(name, type)) { throw new ClassCastException( "Spring bean named '" + name + "' does not implement " + type.getName() + "."); } singleton = beanFactory.isSingleton(name); } @Override public T get() { return singleton ? getSingleton() : type.cast(beanFactory.getBean(name)); } volatile T instance; private T getSingleton() { if (instance == null) { instance = type.cast(beanFactory.getBean(name)); } return instance; } } static class InjectableSpringProvider extends SpringProvider { InjectableSpringProvider(Class type, String name) { super(type, name); } @Inject @Override void initialize(BeanFactory beanFactory) { super.initialize(beanFactory); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy