Filter Types
Filter Type | Example Expression | Description |
annotation |
org.example.SomeAnnotation |
An annotation to be present at the type level in target components. |
assignable |
org.example.SomeClass |
A class (or interface) that the target components are assignable to (extend/implement). |
aspectj |
org.example..*Service+ |
An AspectJ type expression to be matched by the target components. |
regex |
org\.example\.Default.* |
A regex expression to be matched by the target components class names. |
custom |
org.example.MyTypeFilter |
A custom implementation of the org.springframework.core.type .TypeFilter interface. |
posted on 2010-10-06 20:31
岁月神偷 阅读(667)
评论(0) 编辑 收藏 所属分类:
Spring