代碼示例:
@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/