关于@Autowired注入为空指针的原因及解决方法
程序员文章站
2024-03-15 18:37:12
...
问题背景
需要从yml配置文件中读取参数,写了一个config实体类,添加了GET,SET方法,再别的类中@Autowired注入这个配置类的时候报空指针。
问题原因
Google大神回复
翻译人话就是:初始化顺序
成员变量初始化 -> Constructor -> @Autowired
调用get时候,还没有进入autowired的生命周期,自然为空,获取不到值,报空指针错误。
解决方案
引入工具类
/**
* @author aaa@qq.com
* 此工具类用于从Spring的上下文中去获取到类,解决@autowird注入空指针的问题
* @version 1.0
* @date 2020/10/27 16:54
*/
@Component
public class ApplicationContextHelperUtil implements ApplicationContextAware {
private static ApplicationContext applicationContext;
@Override
public void setApplicationContext( ApplicationContext applicationContext1 ) throws BeansException {
applicationContext = applicationContext1;
}
public static ApplicationContext getApplicationContext(){
return applicationContext;
}
@SuppressWarnings("unchecked")
public static <T> T getBean(Class<T> clazz) {
return (T) applicationContext.getBean(clazz);
}
}
同时调用方法由
@Autowired
HeartbeatConfig heartbeatConfig;
改为
private static HeartbeatConfig heartbeatConfig =(HeartbeatConfig) ApplicationContextHelperUtil.getBean(HeartbeatConfig.class);
上一篇: webmagic使用手册