码迷,mamicode.com
首页 > Web开发 > 详细

@Aspect 拦截器相关

时间:2020-01-03 23:27:14      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:poi   etc   rgs   tsig   method   private   join   gets   获取   

执行时机:在HandlerInterceptor


@Pointcut("execution(* com.jbs.oms.aggreg.web.controller.*.*.*(..))")
private void excudeController() {
}

@Before("excudeController()")
public void before(JoinPoint joinPoint) {
  //通过joinPoint可以获取request相关参数:
  Object[] args = joinPoint.getArgs();
  
  //获取当前方法对象:
  MethodJoinPoint point = (MethodJoinPoint)joinPoint;
Signature signature = point.getSignature();
  Method method = signature.getMethod();
  
  //获取当前类:
  joinPoint.getTarget().getClass();
  
}

@Aspect 拦截器相关

标签:poi   etc   rgs   tsig   method   private   join   gets   获取   

原文地址:https://www.cnblogs.com/qlsty/p/12147118.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!