開課吧B端產(chǎn)品經(jīng)理實戰(zhàn)訓(xùn)練營
ReflectiveAspectJAdvisorFactory extends AbstractAspectJAdvisorFactory implements Serializable {
? ? ? ?public Advisor getAdvisor(Method candidateAdviceMethod, MetadataAwareAspectInstanceFactory aspectInstanceFactory,
? ? ? ? ? ? ? ?int declarationOrderInAspect, String aspectName) {
? ? ? ? ? ? ? ?//獲取切點信息,如果candidateAdviceMethod不是切面方法,則返回null
? ? ? ? ? ? ? ?AspectJExpressionPointcut expressionPointcut = getPointcut(
? ? ? ? ? ? ? ? ? ? ? ?candidateAdviceMethod, aspectInstanceFactory.getAspectMetadata().getAspectClass());
? ? ? ? ? ? ? ?if (expressionPointcut == null) {
? ? ? ? ? ? ? ? ? ?return null;
? ? ? ? ? ? ? ?}
標簽: