注解@componentscan
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了注解@componentscan相关的知识,希望对你有一定的参考价值。
@ComponentScan:扫描
@ComponentScan告诉Spring哪个packages的用注解标识的类会被spring自动扫描并且装入bean容器
如:扫描com.liuy.controller
@ComponentScan(basePackages = { "com.liuy.controller" })
如:不扫描含有@ExcludeFromComponentScan注解的类或接口
@ComponentScan(excludeFilters = { @ComponentScan.Filter(type = FilterType.ANNOTATION, value = ExcludeFromComponentScan.class) })
本文出自 “我爱大金子” 博客,请务必保留此出处http://1754966750.blog.51cto.com/7455444/1947226
以上是关于注解@componentscan的主要内容,如果未能解决你的问题,请参考以下文章
一起写框架-Ioc内核容器的实现-基础功能-ComponentScan支持组件注解限制