注解@PostConstruct作用
在項(xiàng)目啟動的時候洛勉,會執(zhí)行該注解注釋的方法粘秆,譬如項(xiàng)目啟動的時候做一些常量初始化操作。
用法
@RequestMapping("/menu")
@RestController
public class MenuController {
@Autowired
private MenuServiceImpl menuService;
@GetMapping("/testMenu")
public Map<String, String> testMenu() {
return menuService.testMenu();
}
}
@Slf4j
@Service
public class MenuServiceImpl {
private final Map<String, String> dataMap = new HashMap<>();
@PostConstruct
public void initDataMap() {
dataMap.put("1", "zhangsan");
dataMap.put("2", "wangwu");
}
public Map<String, String> testMenu() {
Map<String, String> resultMap = new HashMap<>();
resultMap.putAll(dataMap);
return resultMap;
}
}
結(jié)果:
前面提到了@PostConstruct在項(xiàng)目啟動的時候執(zhí)行方法收毫,那么@PostConstruct到底在springboot的執(zhí)行流程中攻走,什么時候執(zhí)行呢?
還是得來一張springboot執(zhí)行流程圖:
什么時候執(zhí)行@PostConstruct
bean實(shí)例化 -> bean屬性填充 -> 找到@PostConstruct注解(postProcessBeforeInitialization方法) -> 執(zhí)行@PostConstruct注解的方法(invokeInitMethods方法方法)
找到@PostConstruct注解
initializeBean方法中的postProcessBeforeInitialization方法(bean的前置處理操作)牛哺,找到@PostConstruct注解陋气。
說明:
- @PostConstruct注解使用InitDestroyAnnotationBeanPostProcessor后置處理器,執(zhí)行其postProcessBeforeInitialization前置處理方法引润。
- postProcessBeforeInitialization方法,通過findLifecycleMetadata方法找到注解@PostConstruct痒玩;
執(zhí)行@PostConstruct注解標(biāo)識方法
說明:
通過invokeInitMethods方法執(zhí)行注解@PostConstruct標(biāo)識的方法淳附,通過java反射的方式調(diào)用bean的@PostConstruct注解標(biāo)識的方法。
@PostConstruct和@Autowired誰先執(zhí)行
進(jìn)入正題蠢古,@Autowired先于@PostConstruct執(zhí)行奴曙。
- 解釋:
@Autowired是用于注入對象,注入對象到this.beanDefinitionMap是在invokeBeanFactoryPostProcessors()方法中實(shí)現(xiàn)的草讶,而@PostConstruct標(biāo)識的方法洽糟,用于在前置處理階段,而之前都已經(jīng)走過了實(shí)例化createBeanInstance和屬性注入populateBean階段堕战。