spring boot源码 自定义初始化器的三种方式
第一种:定义在spring.factories中被SpringFactoriesLoader发现注册 通过模仿源码实现,代码如下: import org.springframework.beans.BeanUtils; import org.springframework.context.ApplicationContextInitializer; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.core.GenericTypeResolver; im
用户评论