欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring中ApplicationContextAware接口的应用

程序员文章站 2022-01-20 10:07:05
...

为什么使用ApplicationContextAware接口:

在spring项目中,类之间的关系是spring容器来管理的,但是一个项目中有些类不受spring容器管理缺需要使用受spring管理的bean,这时候不能通过正常的方式注入bean,这时候spring给我们提供了ApplicationContextAware接口,我们可以编写一个工具类来实现ApplicationContextAware,通过工具类来获取我们需要的bean然后供不在spring容器中的类调用,具体代码如下:

工具类 SpringUtils.java

import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

//此处使用注解的方式把工具类加入到容器中,可以使用xml,配置类等方式,必须要加入到容器中
@Component
public class SpringUtils implements ApplicationContextAware {
	private static ApplicationContext applicationContext;  
  
	@Override  
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {  
		if(SpringUtils.applicationContext == null){  
			SpringUtils.applicationContext  = applicationContext;  
		} 
    } 
	
    public static ApplicationContext getApplicationContext() {  
       return applicationContext;  
    }    
    public static Object getBean(String name){  
       return getApplicationContext().getBean(name);  
    }  
    public static <T> T getBean(Class<T> clazz){  
       return getApplicationContext().getBean(clazz);  
    }  
   public static <T> T getBean(String name,Class<T> clazz){  
       return getApplicationContext().getBean(name, clazz);  
    }
}

容器外类 xxx.java

public class TestAppContext{
	//需要获取的bean
	private Person person;
	public String getPersonName(){
		//通过bean的名称来获取bean
		person = (Person)SpringUtils.getBean("person");
		return person.getName();
	}
}

注:这种方式针对的是使用spring管理的web工程,spring容器在项目启动时开始创建。

相关标签: spring