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容器在项目启动时开始创建。
推荐阅读
-
.Net WInform开发笔记(二)Winform程序运行结构图及TCP协议在Winform中的应用
-
C#中的ICustomFormatter及IFormatProvider接口用法揭秘
-
基于Android应用中如何反馈Crash报告的详解
-
Android应用开发中模拟按下HOME键的效果(实现代码)
-
举例讲解设计模式中的原型模式在iOS应用开发中的作用
-
实例讲解iOS应用开发中UIPickerView滚动选择栏的用法
-
spring boot2.0.4集成druid,用jmeter并发测试工具调用接口,druid查看监控的结果
-
解析php中const与define的应用区别
-
以太网在下一代城域网与广域网中的应用
-
基于Protobuf动态解析在Java中的应用 包含例子程序