Pointcuts
ProxyPointcut pointcut = MethodWithAnnotationPointcut.of(Log.class);ProxyPointcut pointcut = ((ProxyPointcut)
methodInfo -> methodInfo.isPublicMethod()
&& methodInfo.isTopLevelMethod())
.and(MethodWithAnnotationPointcut.of(Log.class));Last updated