美文网首页
Springboot AOP操作

Springboot AOP操作

作者: 风雪幻城 | 来源:发表于2019-04-19 13:47 被阅读0次

https://www.mekau.com/4880.html

新建位图图像.jpg
@Aspect
public class MyAspect{
    //定义切点
    @Pointcut("within(com.*.MyAnnotation)")
    public void myPointcut(){
    }
    @Around("myPointcut()")//多个切点可以使用 & | 连接
    public Object doAuthentication(ProceedingJoinPoint pjp) throws Throwable {
      //TODO
      //pjp中有传入参数
      //校验通过,继续执行目标方法
      return pjp.proceed();
    }
}

相关文章

网友评论

      本文标题:Springboot AOP操作

      本文链接:https://www.haomeiwen.com/subject/pjlbwqtx.html