返回顶部
首页 > 资讯 > 后端开发 > Python >SpringBoot@Autowired注入为空的情况解读
  • 480
分享到

SpringBoot@Autowired注入为空的情况解读

SpringBoot@Autowired@Autowired注入为空SpringBoot@Autowired注入 2023-03-06 14:03:04 480人浏览 独家记忆

Python 官方文档:入门教程 => 点击学习

摘要

目录@Autowired注入为空的情况解读记录下@Autowired注入bean找不到异常异常描述问题原因总结@Autowired注入为空的情况解读 因最近在开发中遇到了使用@Aut

@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 
 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环境没有搭建好的原因

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程网。

--结束END--

本文标题: SpringBoot@Autowired注入为空的情况解读

本文链接: https://lsjlt.com/news/198685.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作