如何在jar包中实现一个切面 拦截指定注解方法
我现在想提供一个jar包,这个jar包会拦截指定注解方法,并记录方法前和方法后的数据
1回答
-
慕码人8056858
@Around("@annotation(MyAnnotation)")public Object aroundCut(ProceedingJoinPoint joinPoint) throws Throwable { //before do something
Object result = joinPoint.proceed(); //after do something
return result;
}但是你需要让调用方扫描到你的aop。