SpringBoot自动装配原理与自己写一个starter前言一、自己定义一个@EnableConfiguration和ImportSelector,实现自动装配二、自动装配原理三、SPI四、自己构建一个starter组件
一、自己定义一个@EnableConfiguration和ImportSelector,实现自动装配需要一下几个步骤(此实践基于xx课程):定义RedisConfiguration类,用@Configuration标注方法,并在用@Bean标注的方法,返回bean实例 自定义@EnableConfiguration注解 自定义GpDefineImportSelector类,实现ImportSelector接口,并重写selectImports方法,selectImports方法里返回我们需要自动