springboot启动之afterpropertiesset方法
作者:互联网
1、init-method方法,初始化bean的时候执行,可以针对某个具体的bean进行配置。init-method需要在applicationcontext.xml配置文档中bean的定义里头写明。例如: 这样,当testbean在初始化的时候会执行testbean中定义的init方法。 2、afterpropertiesset方法,初始化bean的时候执行,可以针对某个具体的bean进行配置。
afterpropertiesset 必须实现 initializingbean接口。实现 initializingbean接口必须实现afterpropertiesset方法。
标签:初始化,initializingbean,springboot,启动,init,bean,方法,afterpropertiesset 来源: https://www.cnblogs.com/zhukaile/p/15925287.html