企业如何通过vue小程序开发满足高效运营与合规性需求
1796
2022-12-26
SpringAop @Around执行两次的原因及解决
在使用AOP环绕通知做日志处理的时候,发现@Around方法执行了两次,虽然这里环绕通知本来就会执行两次,但是正常情况下是在切点方法前执行一次,切点方法后执行一次,但是实际情况却是,切点方法前执行两次,切点方法后执行两次。
文字不好理解,还是写一下代码:
@Around("logPointCut()")
public Object doAround(ProceedingJoinPoint pjp) throws Throwable {
logger.debug("==========Request log==========");
long startTime = System.currentTimeMillis();
Object ob = pjp.proceed();
ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes();
HttpServletRequest request = attributes.getRequest();
//jsONObject ipInfo = JSONObject.fromObject(URLDeQLIshMyNmYcoder.decode(WebUtils.getCookie(request,"IP_INFO").getValue(),"utf-8"));
//logger.debug("IP: {}", ipInfo.get("ip"));
//logger.debug("CITY {}", ipInfo.get("city"));
logger.debug("IP: {}", BlogUtil.getClientIpAddr(request));
logger.debug("REQUEST_URL: {}", request.getRequestURL().toString());
logger.debug("HTTP_METHOD: {}", request.getMethod());
logger.debug("CLASS_METHOD: {}", pjp.getSignature().getDeclaringTypeName() + "."
+ pjp.getSignature().getName());
//logger.info("参数 : " + Arrays.toString(pjp.getArgs()));
logger.debug("USE_TIME: {}", System.currentTimeMillis() - startTime);
logger.debug("==========Request log end==========");
return ob;
}
然后刷新一下页面,得到的日志如下:
可以看到,虽然只刷新了一次,但是却输出了两次日志,是不应该的。然后通过断点调试发现,是因为在Controller中使用了@ModelAttribute
@ModelAttribute
public void counter(Model model) {
counter.setCount(counter.getCount() + 1);
model.addAttribute("count", counter.getCount());
}
@ModelAttribute注解的方法会在Controller方法执行之前执行一次,并且我将它放在了Controller中,并且拦截的是所有Controller中的方法,
这样就导致了:
1、首先页面请求到Controller,执行@ModelAttribute标注的方法,此时会被AOP拦截到一次。
2、执行完@ModelAttribute标注的方法后,执行@RequestMapping标注的方法,又被AOP拦截到一次。
所以,会有两次日志输出。
解决办法:
1、将Controller中的@ModelAttribute方法,提取出来,放到@ControllerAdvice中。
2、对AOP拦截规则添加注解匹配,例如:
execution(public * com.blog.controller.*.*(..)) && (@annotation(org.springframework.web.bind.annotation.RequestMapping))
&& (@annotation(org.springframework.web.bind.annotation.RequestMapping
表明这样只会拦截RequestMappping标注的方法。
注意:
如果是一个方法a()调用同一个类中的方法b(),如果对方法a()做拦截的话,AOP只会拦截到a(),而不会拦截到b(),因为啊a()对b()的调用是通过this.b()调用的,而AOP正真执行的是生成的代理类,通过this自然无法拦截到方法b()了。
了解Spring @Around使用及注意
注意:
1、Spring 切面注解的顺序
@before
@Around( 要代理的方法执行在其中)
@AfterReturning
@after
2、没有@Around,则 要代理的方法执行 异常才会被@AfterThrowing捕获;
3、在@Around如何执行 要代理的方法执行
@Around("execution(* cn.com.xalead.spring.MeInterface.*(..)) || execution(* cn.com.xalead.spring.KingInterface.*(..))")
public Object test(ProceedingJoinPoint proceeding) {
Object o = null;
try {
//执行
o = proceeding.proceed(proceeding.getArgs());
} catch (Throwable e) {
e.printStackTrace();
}
return o;
}
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~