当前位置:首页 > IT技术 > 编程语言 > 正文

在静态方法中调用Spring注入的类的方法
2021-11-16 11:32:32

代码示例:

@Component
public class FileUtil {
    @Autowired
    FileConfig fileConfig;

    @Autowired
    private static FileConfig staticFileConfig;

    @PostConstruct
    public void init(){
        staticFileConfig = fileConfig;
    }

    public static void test(){
        String path = staticFileConfig.getPath();//getPath()是FileConfig中的方法
    }
}

注:
@PostConstruct 该注解被用来修饰一个非静态的 void() 方法。被 @PostConstruct 修饰的方法会在服务器加载 Servlet 的时候运行,并且只会被服务器执行一次。PostConstruct 在构造函数之后执行,init() 方法之前执行。
该注解的方法在整个Bean初始化中的执行顺序:
Constructor(构造方法) -> @Autowired(依赖注入) -> @PostConstruct(注释的方法)

本文摘自 :https://www.cnblogs.com/

开通会员,享受整站包年服务立即开通 >