/**获取用于创建Bean的 Engine。*/
public AopClassConfig buildEngine(List<AopMatcherMethodInterceptor> aopList) {
if (this.engine == null) {
Class<?> superType = this.getSourceType();
superType = (superType == null) ? this.getBindType() : superType;
this.engine = new AopClassConfig(superType, this.masterLosder);
for (AopMatcherMethodInterceptor aop : aopList) {
if (aop.getMatcherClass().matches(superType) == false) {
continue;
}
AopMatcher aopMatcher = new HasorAopMatcher(aop.getMatcherMethod());