码迷,mamicode.com
首页 > 编程语言 > 详细

spring 之脱离容器管理创建的对象进行依赖注入

时间:2015-06-17 09:40:24      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:spring 之脱离容器管理创建的对象进   脱离容器对象进行依赖注入   

      我们有时候也会遇到一些脱离spring容器创建的类实例,如何把spring容器内的对象注入到这些类实例内呢。

      我们可以用org.springframework.beans.factory.config.AutowireCapableBeanFactory.createBean(Class<?> beanClass, int
 autowireMode, boolean dependencyCheck) 来创建这个脱离容器的对象,该方法返回脱离容器创建的对象,只不过对象的创建交给spring了。

    我们可以用(也许这情况比较多,因为此脱离容器创建的对象也许会有其它框架创建)org.springframework.beans.factory.config.AutowireCapableBeanFactory.autowireBean(Object existingBean),把this对象传进来。

  代码示例:

/*
 * Copyright (C) 2014- now() The  spring4-2015  Authors
 *
 * https://github.com/sdcuike
 *
 * 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.doctor.spring4.blog.code;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertNull;

import java.util.stream.Stream;

import javax.annotation.Resource;

import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
import org.springframework.beans.factory.annotation.Autowire;
import org.springframework.beans.factory.annotation.Configurable;
import org.springframework.beans.factory.config.AutowireCapableBeanFactory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.EnableLoadTimeWeaving;
import org.springframework.context.annotation.EnableLoadTimeWeaving.AspectJWeaving;
import org.springframework.context.annotation.aspectj.EnableSpringConfigured;

/**
 * Wire object dependencies outside a Spring Container->脱离容器管理创建的对象进行依赖注入
 * 
 * 脱离容器管理创建的对象进行依赖注入
 * 
 * @see <a href= "http://www.javacodegeeks.com/2012/09/wire-object-dependencies-outside-spring.html">http://www.javacodegeeks.com/2012/09/wire-object-dependencies-outside-spring.html </a>
 * 
 * @author doctor
 *
 * @time 2015年6月16日 上午9:33:54
 */
public class WireObjectDependenciesOutsideSpring {

	@Rule
	public ExpectedException expectedException = ExpectedException.none();

	/**
	 * Instantiate the bean and then inject dependencies using AutoWireCapableBeanFactory.autowireBean(instance)
	 * 看下输出容器内的所有bean,容器内并没有person对象。只是创建返回此对象,并对该对象内的依赖进行注入。
	 */
	@Test
	public void test_create_bean_and_inject_dependencies() {
		AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
		Person person = (Person) applicationContext.getAutowireCapableBeanFactory().createBean(Person.class, AutowireCapableBeanFactory.AUTOWIRE_BY_TYPE, false);

		assertNotNull(person.getContext());
		Stream.of(applicationContext.getBeanDefinitionNames()).forEach(System.out::println);
		applicationContext.close();
	}

	/**
	 * Instantiate the bean and then inject dependencies using AutoWireCapableBeanFactory.autowireBean(instance)
	 */
	@Test
	public void test_only_inject_dependencies() {
		AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(SpringConfig.class);
		Person person = new Person();
		assertNull(person.getContext());
		applicationContext.getAutowireCapableBeanFactory().autowireBean(person);

		assertNotNull(person.getContext());
		Stream.of(applicationContext.getBeanDefinitionNames()).forEach(System.out::println);

		applicationContext.close();
	}

	 

	@Configuration
	static class SpringConfig {

	}

	static class Person {
		@Resource
		private ApplicationContext context;

		public ApplicationContext getContext() {
			return context;
		}

	}

	@Configuration
	@EnableSpringConfigured
	@EnableLoadTimeWeaving(aspectjWeaving = AspectJWeaving.ENABLED)
	static class SpringConfig2 {

	}

	@Configurable(autowire = Autowire.BY_TYPE, dependencyCheck = true)
	static class Person2 {
		@Resource
		private ApplicationContext context;

		public ApplicationContext getContext() {
			return context;
		}

	}

}


上述示例还有一个是用aop实现,不过要开启java选项之类的,网上还有在tomcat下报错的,没仔细学习。


参考:http://www.javacodegeeks.com/2012/09/wire-object-dependencies-outside-spring.html

spring 之脱离容器管理创建的对象进行依赖注入

标签:spring 之脱离容器管理创建的对象进   脱离容器对象进行依赖注入   

原文地址:http://blog.csdn.net/doctor_who2004/article/details/46525361

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!