SpringAop @annotation\@Aspect练习
切面记录日志练习切面类@Slf4j@Aspect@Componentpublic class AspectForFeign { @Pointcut("execution(public * com.keke.remote..*Feign.*(..))") public void pointcut() { } @Around("pointcut()") public Object around(ProceedingJoinPoint joinPoin
原创
2021-01-17 08:01:12 ·
493 阅读 ·
0 评论