初始化Bean的先后顺序
1、bean实例化;
2、populateBean填充属性;
3、BeanPostProcessor的postProcessBeforeInitialization方法;
4、注解了@PostConstruct的方法;
5、InitializingBean的afterPropertiesSet方法;
6、bean的指定初始化方法:init-method;
6、BeanPostProcessor的postProcessAfterInitialization方法;