ImportSelector接口使用方法

发布时间:2020-05-26 20:50:24 作者:鸽子
来源:亿速云 阅读:411

ImportSelector:返回需要导入的组件的全类名数组

创建一个实现了ImportSelector接口的类,然后让入Import中。ImportSelector的实现类包含了所有需要导入到容器中的组件。

public class StuConfigurationImportSerlect implements ImportSelector {

@Override

public String[] selectImports(AnnotationMetadata importingClassMetadata) {

    //编程的方式增加了Bean的弹性逻辑性

    //字符串数组里面的类会被注册到容器

    return new String[]{"com.example.demo8.entity.Stu"};

}

}

@Configuration

@Import(StuConfigurationImportSerlect.class)

public class StuConfiguration {

}

推荐阅读:
  1. Kubernetes存储架构和接口使用方法
  2. Java集合Collection中List接口的使用方法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

importselector import sel

上一篇:@Component中直接导入类注册到容器的方法

下一篇:Yosojben脚本器联网检测

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》