参数上使用自定义注解在aop中无法获取到该参数

https://ask.csdn.net/questions/769477

/** * 环绕增强,验证权限 * @param joinPoint 目标对象 * @param authCheck 自定义的注解,Around必须这样写,否则自定义的注解无法传入 * */ @Around("pointAll() && @annotation(authCheck)") public Object before(ProceedingJoinPoint joinPoint, AuthCheck authCheck) throws Throwable
posted @ 2019-11-08 09:04  A汉克先生  阅读(887)  评论(0编辑  收藏  举报