今天在编写测试代码的时候使用SpringAppContextUtil工具类获取Spring应用上下文环境对象的时候报空指针异常。
后来查资料发现工具类中一开始是声明了一个ApplicationContext类型的静态变量,但是由于静态变量是不能被Spring容器管理的,所以直接静态调用是无法掉用到上下文对象的。由于工具类是在jar包中的所以无法更改,所以自己写了仿写了一个工具类。先去除setter方法中的static关键字,在setter方法上加上@Autowired注解,添加@Component注解才可实现特定bean的注入。
package cn.single;
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;
@Component
public class SpringContextUtils implements ApplicationContextAware {
private static ApplicationContext applicationContext;
/**
* 通过name获取 Bean.
* @param name
* @return
*/
public static Object getBean(String name){
return getApplicationContext().getBean(name);
}
/**
* 通过class获取Bean.
* @param clazz
* @param <T>
* @return
*/
public static <T> T getBean(Class<T> clazz){
return getApplicationContext().getBean(clazz);
}
/**
* 通过name及Clazz返回指定的Bean
* @param name
* @param clazz
* @param <T>
* @return
*/
public static <T> T getBean(String name,Class<T> clazz){
return getApplicationContext().getBean(name, clazz);
}
@Autowired
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
this.applicationContext = applicationContext;
}
/**
* 获取applicationContext
* @return
*/
public static ApplicationContext getApplicationContext() {
return applicationContext;
}
}
可以使用直接注入的方式使用ApplicationContext
@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoTest {
@Autowired
ApplicationContext applicationContext;
@Autowired
SpringContextUtils springContextUtils;
@Test
public void contextLoads() {
System.out.println(applicationContext);
System.out.println(applicationContext.getBean("person"));;
System.out.println(springContextUtils.getBean("person"));;
}
}
运行结果