SpringBoot @Autowired注入为空的情况解读
目录
- @Autowired注入为空的情况解读
- 记录下
- @Autowired注入bean找不到异常
- 异常描述
- 问题原因
- 总结
@Autowired注入为空的情况解读
因最近在开发中遇到了使用@Autowired注解 自动装配时,会报空指针,发现对象并没有装配进来,通过查询,总结了几种可能造成这种情况的原因。
记录下
1.最简单的一种情况,查看被装配的类,也就是@Autowired注解下的类是否添加了注解交给SpringBoot托管,@service等注解,或者是直接加上@Component注解。
2.看你的xxxxxApplication是否在根目录,因为springboot默认扫描的就是启动类下的目录(这个我记着只限于Springboot2.0.5之前的版本,因为新版可以通过@ComponenScan注解去指定扫描范围)。
3.@Service、@Componet、@Configuration、@Repository等Spring注解未被扫描到,例如:springboot的主类扫描规则,就是说需要查看你的Springboot启动类,xxxxxApplication,查看启动类上注解是否加了@ComponenScan注解,是否指定了扫描范围。
使用springboot启动类配置扫描的两种注解配置方式:
- 1、@Controller @EnableAutoConfiguration @ComponentScan 。
- 2、@SpringBootApplication
4.使用救急方法,这是如果没找到原因,我们先使用其他方法让程序先能正常运行和调试,后续再查找问题。
@Autowired private SchedulerFactoryBean schedulerFactoryBean; private static QuartzManager quartzManager; /** * 通过@PostConstruct实现初始化bean之前进行的操作 * @desc 初始化操作,得到QuartzManager实例 * @Date 2019年1月7日 */ @PostConstruct public void init() { quartzManager = this; quartzManager.schedulerFactoryBean = this.schedulerFactoryBean; }
使用@PostConstruct 初始化。
5.这个原因很重要,也是经常会被忽略的一个因素。调用者是new出来的。如果类A中存在成员属性B, B是通过@Autowired自动注入,而类A的实例是通过new的方式产生的,那么自动注入会失效的,此时通过Spring的上下文获取所有的Bean的方法来获取B。此时,看看你在报空指针的那个类,看它是否是被new出来的,如果是,不妨使用SpringUtil.getBean()方法替换下, 然后再试下!
@Autowired注入bean找不到异常
异常描述
***************************
APPLICATION FAILED TO START
***************************Description:
Field clientAuthService in com.yinhai.mzgh.eurekaclient.feign.interceptor.Oauth2RequestInterceptor
required a bean of type 'com.yinhai.mzgh.eurekaclient.feign.service.ClientAuthService' that could not be found.The injection point has the following annotations:
- @org.springframework.beans.factory.annotation.Autowired(required=true)Action:
Consider defining a bean of type 'com.yinhai.mzgh.eurekaclient.feign.service.ClientAuthService' in your configuration.
问题原因
这个问题是环境问题,在Profiles 中之前是dev 环境
我刚来,猜测是 dev环境没有搭建好的原因
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。