當前位置:首頁 > IT技術 > 編程語言 > 正文

在靜態(tài)方法中調用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 該注解被用來修飾一個非靜態(tài)的 void() 方法。被 @PostConstruct 修飾的方法會在服務器加載 Servlet 的時候運行,并且只會被服務器執(zhí)行一次。PostConstruct 在構造函數之后執(zhí)行,init() 方法之前執(zhí)行。
該注解的方法在整個Bean初始化中的執(zhí)行順序:
Constructor(構造方法) -> @Autowired(依賴注入) -> @PostConstruct(注釋的方法)

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

開通會員,享受整站包年服務立即開通 >