spring实现静态注入类或者属性

35次阅读

共计 1226 个字符,预计需要花费 4 分钟才能阅读完成。

[spring 实现静态注入(类或者属性)]()

场景是:工具类一般都是静态方法,静态方法只能访问静态属性。所以,我们需要静态注入类或者属性。

常规操作:

注入类或者方法:

@Autowired
private TestService testService;
@Resource
private TestService testService;
@Value("${key}")
private String key;

这样,我们就把容器里的类和 Enviroment 里的值注进去了。

静态注入操作:

我们使用相同的方式进行注入


@Autowired
private static TestService testService;
@Resource
private static TestService testService;
@Value("${key}")
private static String key;

我们在静态方法使用的时候,会出现 null;
发现注入不进去。

解决办法有两种方式:
(1)@PostConstruct 方式实现

@Component  
public class TestUtil {
   @Autowired    
   private static TestService testService;
   private static TestUtil testUtils;
      
   @PostConstruct      
   public void init() {          
      testUtils =this;          
      testUtils.testService =this.testService;      
   }  
}

@PostConstruct 注解的方法在加载类的构造函数之后执行,也就是在加载了构造函数之后,执行 init 方法;(@PreDestroy 注解定义容器销毁之前的所做的操作) 这种方式和在 xml 中配置 init-method 和 destory-method 方法差不多,定义 spring 容器在初始化 bean 和容器销毁之前的所做的操作;

(2)set 方法注入实现


@Component  
public class TestUtil {
       
   private static TestService testService;
   private static String key;
        @Value("{key}")
      public void setTestService(String key) {TestUtil.key = key;}  

        @Autowired
    public void setTestService(TestService testService) {TestUtil.testService =this.testService;}  
}

ok, 完事,使用 set 方法注入,这种使用比较多

有问题请留言!
个人博客地址 https://blog.ailijie.top

正文完
 0