Version1:记录一下Spring源码需要用的基础知识,先个Flag,后续再写。​​Spring源码 - initializeBean​​

大家可以参考:spring-framework-reference5.1.7.RELEASE-core.pdf, 1.6. Customizing the Nature of a Bean

>常用的设定方式有以下三种:
1、通过实现 InitializingBean/DisposableBean 接口来定制初始化之后/销毁之前的操作方法;
2、通过 <bean> 元素的 init-method/destroy-method属性指定初始化之后 /销毁之前调用的操作方法;
3、在指定方法上加上@PostConstruct 或 @PreDestroy注解来制定该方法是在初始化之后还是销毁之前调用。