静态方法中调用Spring注入的方法(Bean中方法)

Posted h-dream

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静态方法中调用Spring注入的方法(Bean中方法)相关的知识,希望对你有一定的参考价值。

package io.yong.common.utils;

import javax.annotation.PostConstruct;
import io.renren.common.config.ConfigProperties;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;


/**
 * @author: HYJ
 * @create: 2019-09-25 14:16
 */
@Component
public class CalcUtil {

    /**
     * 需要调用的Bean
     */
    @Autowired
    private ConfigProperties configProperties;

    private static CalcUtil calcUtil;

    /**
     *注释用于在完成依赖项注入以执行任何初始化之后需要执行的方法。必须在类投入使用之前调用此方法。
     */
    @PostConstruct
    public void initialize() {
        calcUtil= this;
        calcUtil.configProperties = this.configProperties;
    }


  public static void calcTax() {    
       calcUtil.configProperties.getFileupload();   //此处若是空指针异常,则需要是当前类实例化,即注册bean,例如上:@Component等
     
    }    

Java中该注解的说明:@PostConstruct该注解是javax.annotation包下的,被用来修饰一个非静态的void()方法。被@PostConstruct修饰的方法会在服务器加载Servlet的时候运行,并且只会被服务器执行一次。PostConstruct在构造函数之后执行,init()方法之前执行。

@PostConstruct注释规则:除了拦截器这个特殊情况以外,其他情况都不允许有参数,否则spring框架会报IllegalStateException;而且返回值要是void,但实际也可以有返回值,至少不会报错,只会忽略

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

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

以上是关于静态方法中调用Spring注入的方法(Bean中方法)的主要内容,如果未能解决你的问题,请参考以下文章

spring为类的静态属性实现注入

spring工具类中注入使用bean

springboot 静态类中调用bean

静态文件获取spring管理的bean对象

spring注入时bean的set方法为啥不能是static类型的?

spring注入时bean的set方法为什么不能是static类型的?