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