@Enable*注解
使用该注解,需要导入相应的依赖坐标,其中的groupId标签里面写入Bean的Java文件所在的包的路径下面
spring-enable-other
还需要在SpringBoot的执行文件那里加上这样的注解@ComponentScan(里面放置引用Bean配置类的文件路径)
或者使用第二种形式:@Import(文件名称.class)
该文件为引用Bean配置类的Java文件
@Import注解
4种方法:
1、导入Bean
2、导入配置类
3、导入ImportSelector的实现类
4、导入ImportBeanDefinitionRegister的实现类