类 AspectJTypeFilter
java.lang.Object
cn.taketoday.core.type.filter.AspectJTypeFilter
- 所有已实现的接口:
TypeFilter
Type filter that uses AspectJ type pattern for matching.
A critical implementation details of this type filter is that it does not load the class being examined to match with a type pattern.
- 从以下版本开始:
- 4.0 2021/12/15 23:01
- 作者:
- Ramnivas Laddad, Juergen Hoeller, Harry Yang
-
构造器概要
构造器 -
方法概要
修饰符和类型方法说明booleanmatch(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) Determine whether this filter matches for the class described by the given metadata.
-
构造器详细资料
-
AspectJTypeFilter
-
-
方法详细资料
-
match
public boolean match(MetadataReader metadataReader, MetadataReaderFactory metadataReaderFactory) throws IOException 从接口复制的说明:TypeFilterDetermine whether this filter matches for the class described by the given metadata.- 指定者:
match在接口中TypeFilter- 参数:
metadataReader- the metadata reader for the target classmetadataReaderFactory- a factory for obtaining metadata readers for other classes (such as superclasses and interfaces)- 返回:
- whether this filter matches
- 抛出:
IOException- in case of I/O failure when reading metadata
-