在Static方法中引用被@AutoWired修饰的属性,无法注入,报空指针异常、SpringBoot + Mybatis

场景:在Static方法中引用被@AutoWired修饰的属性,无法注入,报空指针异常

问题:SpringBoot + Mybatis连接数据库Bean不能注入报空指针异常

在保存到数据库时出现空指针异常在Static方法中引用被@AutoWired修饰的属性,无法注入,报空指针异常、SpringBoot + Mybatis

原因:

因为静态无法注入,通常我们会是在Spring框架中使用到@PostConstruct注解 该注解的方法在整个Bean初始化中的执行顺序:

Constructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)

解决:

网上咨询了比较多的方法,最终使用上下文来获得Bean注入。

  1. 在组件类里头这样获得Bean
	@Autowired
    ApplicationContext applicationContext;//自动注入
    private static OneFF oneFFTest;// 设备一15分钟
    private static OneXF oneXFTest;// 设备一1小时
//    
    @PostConstruct
    public void init() {
    	// bean注入
		RequestClient.oneFFTest = applicationContext.getBean(OneFF.class);
		RequestClient.oneXFTest = applicationContext.getBean(OneXF.class);
		
	}

  1. 要在类上加@Component
    在Static方法中引用被@AutoWired修饰的属性,无法注入,报空指针异常、SpringBoot + Mybatis
  2. 在启动类上加组件扫描@ComponentScans(value = {@ComponentScan(“com.lswei.btc”),@ComponentScan(“qixiangchang”)})和mapper包扫描@MapperScan(basePackages = “mapper”)
@EnableAutoConfiguration()
@SpringBootApplication
@ComponentScans(value = {@ComponentScan("com.lswei.btc"),@ComponentScan("qixiangchang")})
@MapperScan(basePackages =  "mapper")
@EnableScheduling
public class BtcApplication {

	public static void main(String[] args) {
		SpringApplication.run(BtcApplication.class, args);
	}

}

##日常BUG记录,希望对你有帮助

上一篇:启用 Spring-Cloud-OpenFeign 配置可刷新,项目无法启动,我 TM 人傻了(下)


下一篇:【死磕Spring】| Spring IoC容器:BeanFactory和ApplicationContext谁才是Spring IoC容器?