this.engine = new AopClassConfig(superType, this.masterLosder);
for (AopMatcherMethodInterceptor aop : aopList) {
if (aop.getMatcherClass().matches(superType) == false) {
continue;
}
AopMatcher aopMatcher = new HasorAopMatcher(aop.getMatcherMethod());
this.engine.addAopInterceptor(aopMatcher, aop);
}
}
return this.engine;
}