Spring生命周期回调的方法是通过实现InitializingBean和DisposableBean接口中的方法来实现的。
InitializingBean接口中的方法是afterPropertiesSet(),在Bean的所有属性被设置之后被调用。
DisposableBean接口中的方法是destroy(),在Bean被销毁之前被调用。