spring aop获取方法指定annotation的参数
指定注解为:HeaderParam
处理过程:
@Around("execution(execution(* com.test.service.*.*(..))")
public Object exceptionHandle(ProceedingJoinPoint js){
try {
baseParamSetIp(js);
return js.pro...
原创
2019-08-19 18:02:32 ·
1438 阅读 ·
0 评论