2022年3月24日

Spring AOP原理简述

摘要: Spring AOP底层是动态代理,大致流程是这样,在InvocationHandler的invoke方法里,根据参数method反射拿到被代理方法的签名: String signature = Modifier.toString(method.getModifiers()) + method.ge 阅读全文

posted @ 2022-03-24 20:45 金满仓 阅读(28) 评论(0) 推荐(0)

Spring AOP 配置的十九个关键元素

摘要: context:component-scan base-pakage aop:aspectj-autoproxy Aomponent Aspect Before Arround After AfterReturning AfterThrowing ProceedJoinPoint.proceed P 阅读全文

posted @ 2022-03-24 18:14 金满仓 阅读(44) 评论(0) 推荐(0)

导航