注解@componentscan

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注解@componentscan相关的知识,希望对你有一定的参考价值。

@ComponentScan:扫描

@ComponentScan告诉Spring哪个packages的用注解标识的类会被spring自动扫描并且装入bean容器

如:扫描com.liuy.controller

@ComponentScan(basePackages = { "com.liuy.controller" })


excludeFilters:指定不适合组件扫描的类型

如:不扫描含有@ExcludeFromComponentScan注解的类或接口

@ComponentScan(excludeFilters = { @ComponentScan.Filter(type = FilterType.ANNOTATION, value = ExcludeFromComponentScan.class) })

本文出自 “我爱大金子” 博客,请务必保留此出处http://1754966750.blog.51cto.com/7455444/1947226

以上是关于注解@componentscan的主要内容,如果未能解决你的问题,请参考以下文章

@componentscan注解的用法和作用

注解@componentscan

一起写框架-Ioc内核容器的实现-基础功能-ComponentScan支持组件注解限制

@ComponentScan注解**

Spring注解详解:@ComponentScan自动扫描组件使用

如何使用@ComponentScan 注解扫描多个路径?