java – 做上下文:组件扫描编程方式?

我当前使用AnnotationConfigApplicationContext和ClasspathXmlApplicationContext进行混合,并将AnnotationConfigApplicationContext作为父上下文.但我发现AnnotationConfigApplicationContext中定义的bean不能很好地处理ClasspathXmlApplicationContext中定义的bean.所以我想放弃ClasspathXmlApplicationContext,并使我的应用程序只使用AnnotationConfigApplicationContext.

问题是,我不知道如何替换< context:component-scan>完全.我可以使用AnnotationConfigApplicationContext.scan(…)轻松地进行包扫描,但似乎无法在AnnotationConfigApplicationContext中添加包含/排除模式.

任何的想法?

最佳答案
它看起来不像AnnotationConfigApplicationContext类提供开箱即用的排除/包含过滤器.在内部,类使用ClassPathBeanDefinitionScanner的实例来扫描注释,该注释提供方法addExcludeFilter和addIncludeFilter.不幸的是,该字段是私有的,并且没有getter方法,因此您不能只编写扩展AnnotationConfigApplicationContext并添加include和exclude方法的实现.相反,您可能必须从AnnotationConfigApplicationContext复制代码添加缺少的方法

public void addExcludeFilter(TypeFilter excludeFilter) 
{
    this.scanner.addExcludeFilter(excludeFilter);
}

public void addIncludeFilter(TypeFilter includeFilter) 
{
    this.scanner.addIncludeFilter(includeFilter);
}

相关文章

Spring Cloud为Spring Boot应用程序提供Netflix OSS集成。 提供的功能模块包括服务发现(Eureka),断路...
Spring Cloud 学习笔记;maven配置;入门学习;基于Spring Boot 实现;服务端配置,客户端配置;
可以毫不夸张地说,这篇文章介绍的 Spring/SpringBoot 常用注解基本已经涵盖你工作中遇到的大部分常用的...
Spring中各种方式进行日期时间处理,有作用于单个实体的,也有作用于全局的,有作用于请求入参的,有作...
跨域资源共享(Cross-origin resource sharing)(CORS)是W3C的标准,大部分的浏览器都实现了这个标准...
Spring Boot使创建基于Spring的应用程序变得轻松,大部分的SpringBoot应用程序都只需要很少的Spring配置...