當(dāng)前位置:首頁(yè) > IT技術(shù) > 編程語(yǔ)言 > 正文

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

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

開通會(huì)員,享受整站包年服務(wù)立即開通 >