https://ask.csdn.net/questions/769477
/**
* 环绕增强,验证权限
* @param joinPoint 目标对象
* @param authCheck 自定义的注解,Around必须这样写,否则自定义的注解无法传入
* */
@Around("pointAll() && @annotation(authCheck)")
public Object before(ProceedingJoinPoint joinPoint, AuthCheck authCheck) throws Throwable
原文地址:https://www.cnblogs.com/gzhbk/p/11818036.html
时间: 2024-11-05 13:43:55