码迷,mamicode.com
首页 > 编程语言 > 详细

Spring FIlterType

时间:2016-05-02 15:34:09      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:

Filter Types 的5中类型:

1 . annotation  注解           org.springframework.stereotype.Controller        注解名(类型)

 

2. assignale  类名或者接口   org.example.someClass 

 

3. aspectj    简单点就是就是切面表达式

 

4.regex  正则表达式

 

5. custom  实现了 org.springframework.core.type.TypeFilter 接口的类型

 

技术分享

 

<beans>
<context:component-scan base-package="org.example">
<context:include-filter type="regex"
expression=".*Stub.*Repository"/>
<context:exclude-filter type="annotation"
expression="org.springframework.stereotype.Repository"/>
</context:component-scan>
</beans>

use-default-filters="false"关闭默认filter

Spring FIlterType

标签:

原文地址:http://www.cnblogs.com/TakeaHeader/p/5452324.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!