当前位置:   article > 正文

SpringBoot静态方法调用Spring容器bean_springboot 静态方法调用bean

springboot 静态方法调用bean
SpringBoot静态方法调用Spring容器bean
  • Spring容器的依赖注入是依赖set方法,而set方法是实例对象的方法,注入依赖时是无法注入静态成员变量的,在调用的时候依赖的Bean才会为null;
@Autowired
CouponBatchService couponBatchServiceBean;

//由于静态方法无法使用注入的Bean 定义静态变量
private static CouponBatchService couponBatchService;

//当容器实例化当前受管Bean时@PostConstruct注解的方法会被自动触发,借此来实现静态变量初始化
@PostConstruct
public void init(){
   couponBatchService = this;
}

public static void test(String test) {
   couponBatchService.bind(test);
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
解释
  • spring 中一个类的方法被另一个类调用时,不能直接实例化这个类,再调用其中的方法;
    也不可以把通过service调用的方法直接定义为静态直接直接类名.方法名调用。
    必须使用service注入的方式,用service.方法名去调用这个方法。
    因为spring 直接new出的对象,无法自动注入@Autowired进入的spring bean**
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/798433
推荐阅读
相关标签
  

闽ICP备14008679号