Spring注解驱动开发——组件注册 @Import-使用ImportSelector

实现类

package com.mongoubiubiu.condition;

import org.springframework.context.annotation.ImportSelector;
import org.springframework.core.type.AnnotationMetadata;

/**
 * 自定义逻辑返回需要导入的组件
 * @author 86138
 *
 */
public class MyInportSelect implements ImportSelector {

    //返回值,就是到导入容器中的组件全类名
    //AnnotationMetadata:当前标注@Import注解的类的所有注解信息
    @Override
    public String[] selectImports(AnnotationMetadata arg0) {
        return new String[]{"com.mongoubiubiu.bean.Blue","com.mongoubiubiu.bean.Black"};
    }

}

Import 导入 MyInportSelect 

 

 测试

 

 

 发现被注入进来了 但是这里的bean id 为类的全类名

posted @ 2021-07-26 22:43  KwFruit  阅读(41)  评论(0编辑  收藏  举报