当前位置: 首页 > news >正文

岳阳汨罗网站建设郑州模板网站建设

岳阳汨罗网站建设,郑州模板网站建设,大连企业网站建站,网站不用域名解绑常用注解 Aspect 切面类 Before 前置 AfterReturning 后置 Around 环绕 AfterThrowing 异常 切入点设置 execution(public * *(..)) 定义任意公共方法的执行 execution(* set*(..)) 定义任何一个以"set"开始的方法的执行 execution(* com.sys.service.UserService…

常用注解

@Aspect 切面类
@Before 前置
@AfterReturning 后置
@Around 环绕
@AfterThrowing 异常

切入点设置

execution(public * *(..)) 定义任意公共方法的执行
execution(* set*(..)) 定义任何一个以"set"开始的方法的执行
execution(* com.sys.service.UserService.*(..)) 定义UserService 接口的任意方法的执行
execution(* com.sys.service.*.*(..)) 定义在service包里的任意方法的执行
execution(* com.sys.service ..*.*(..)) 定义在service包和所有子包里的任意类的任意方法的执行
execution(* com.sys.pointcutexp…JoinPointObject.*(…)) 定义在pointcutexp包和所有子包里的JoinPointObject类的任意方法的执行

本次使用aop用途说明

使用@AfterReturning方法拿到请求接口的返回状态码,将需要处理的问题状态码及错误信息保存到数据库及输出到日志文件,方便通过数据库进行接口调用错误信息监控。通过配置切入点对controller的所有请求接口进行处理,就无需再在每一个请求方法中进行处理。
使用@AfterThrowing方法拿到请求接口方法异常调用信息,其他同上。

参考代码

package com.system.common.aop;import com.alibaba.fastjson.JSON;
import com.system.service.SysLogService;
import com.xlx.entity.BaseResponse;
import com.xlx.entity.bsc.system.DO.SystemLogInfoDO;
import com.xlx.utils.ExceptionUtil;
import com.xlx.utils.StringParseUtils;
import lombok.extern.slf4j.Slf4j;
import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.*;
import org.aspectj.lang.reflect.MethodSignature;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;import java.lang.reflect.Method;
import java.util.Arrays;/*** @version: java version 1.8* @Author: sagitario* @description: 异常请求记录到数据库及日志输出* @date: 2023-04-20 11:44*/
@Component
@Aspect
@Slf4j
public class ApiResponseAOP {@Autowiredprivate SysLogService sysLogService;private static String [] passUrl = {"过滤的请求url"};@Pointcut("execution(* com.*.controller.*.*(..))")private void methodAspect(){}//定义一个切入点@Before("methodAspect()")public void doAudit(JoinPoint joinPoint) {log.info("BeforeAdvice.............");}@AfterReturning(value = "methodAspect()",returning = "methodResult")public void afterReturning(JoinPoint joinPoint, Object methodResult) {MethodSignature ms = (MethodSignature) joinPoint.getSignature();Method method = ms.getMethod();String clazz = method.getDeclaringClass().getName();log.debug("请求类为:" + clazz);String mName = method.getName();log.debug("请求方法为:" + mName);if(Arrays.binarySearch(passUrl, mName)<0){BaseResponse baseResponse = (BaseResponse) methodResult;if(!baseResponse.isSuccess()){StringBuffer stringBuffer = new StringBuffer();for (int i = 0; i < joinPoint.getArgs().length; i++) {log.debug("请求参数为:" + JSON.toJSONString(joinPoint.getArgs()[i]));stringBuffer.append(JSON.toJSONString(joinPoint.getArgs()[i]));}log.debug("请求返回内容为:" + methodResult.toString());SystemLogInfoDO systemLogInfoDO = new SystemLogInfoDO();systemLogInfoDO.setInfo(clazz + "." + mName);systemLogInfoDO.setParam(stringBuffer.toString());systemLogInfoDO.setCode(baseResponse.getCode());systemLogInfoDO.setMessage(baseResponse.getMessage());if(baseResponse.getCode()==204){systemLogInfoDO.setLevel("INFO");}else{systemLogInfoDO.setLevel("ERROR");}sysLogService.insertSelective(systemLogInfoDO);}}}@AfterThrowing(value = "methodAspect()",throwing = "e")public void afterThrowing(JoinPoint joinPoint, Exception e) {log.info("AfterThrowing advice");MethodSignature ms = (MethodSignature) joinPoint.getSignature();Method method = ms.getMethod();String clazz = method.getDeclaringClass().getName();log.info("请求类为:" + clazz);String mName = method.getName();log.info("请求方法为:" + mName);SystemLogInfoDO systemLogInfoDO = new SystemLogInfoDO();try {StringBuffer stringBuffer = new StringBuffer();for (int i = 0; i < joinPoint.getArgs().length; i++) {log.info("请求参数为:" + JSON.toJSONString(joinPoint.getArgs()[i]));stringBuffer.append(JSON.toJSONString(joinPoint.getArgs()[i]));}systemLogInfoDO.setParam(stringBuffer.toString());}catch (Exception e1){log.info("请求方法参数无法解析:" + ExceptionUtil.getMessage(e1));systemLogInfoDO.setParam("请求方法参数无法解析");}String error = ExceptionUtil.getMessage(e);log.info("afterThrowing异常:{}",error);systemLogInfoDO.setInfo(clazz + "." + mName);systemLogInfoDO.setCode(500);systemLogInfoDO.setMessage(error);systemLogInfoDO.setLevel("EXCEPTION");sysLogService.insertSelective(systemLogInfoDO);}}

日志输出

2023-05-22 18:36:14 [http-nio-8831-exec-6] [com.loan.common.aop.ApiResponseAOP:82] INFO  com.loan.common.aop.ApiResponseAOP - 请求类为:com.loan.controller.RepayController
2023-05-22 18:36:14 [http-nio-8831-exec-6] [com.loan.common.aop.ApiResponseAOP:84] INFO  com.loan.common.aop.ApiResponseAOP - 请求方法为:repaymentRecord
2023-05-22 18:36:14 [http-nio-8831-exec-6] [com.loan.common.aop.ApiResponseAOP:89] INFO  com.loan.common.aop.ApiResponseAOP - 请求参数为:"110014"
2023-05-22 18:36:14 [http-nio-8831-exec-6] [com.xlx.exception.GlobalExceptionHandler:26] ERROR com.xlx.exception.GlobalExceptionHandler - feign.RetryableException: Read timed out executing GET http://external-platform-server/repay/repaymentRecordsat feign.FeignException.errorExecuting(FeignException.java:213)at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:115)......
2023-05-22 18:36:14 [http-nio-8831-exec-6] [com.loan.common.aop.ApiResponseAOP:98] INFO  com.loan.common.aop.ApiResponseAOP - afterThrowing异常:feign.RetryableException: Read timed out executing GET http://external-platform-server/repay/repaymentRecordsat feign.FeignException.errorExecuting(FeignException.java:213)at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:115)at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:80)at feign.ReflectiveFeign$FeignInvocationHandler.invoke(ReflectiveFeign.java:103)

其他

JDK动态代理相关可参考 一篇文章彻底搞懂java AOP、@Before、@After、@AfterReturning、@AfterThrowing、@Around的使用、Spring AOP详解

http://www.hyszgw.com/news/20222.html

相关文章:

  • 辽宁省建设工程信息网客服电话如何网站关键词优化
  • 在建设厅网站上查询注销建造师电商怎么做推广
  • 优购物官方网站下载正规引流推广公司
  • wps演示做的和网站导航上海优化价格
  • layui+wordpress巩义网站优化公司
  • 网站备案的域名加不加www今日国内新闻大事20条
  • 济南网站搜索引擎优化百色seo关键词优化公司
  • 上海公司注册核名官网深圳网站优化平台
  • 网站充值平台怎么做品牌seo培训咨询
  • 宁波专业建站登录百度app
  • 杭州建立网站emlog友情链接代码
  • 安徽合肥发现1例阳性优化工作流程
  • 购物帮做特惠的导购网站现在网络推广哪家好
  • 邯郸移动网站建设价格百度seo排名查询
  • 做医采官方网站优化网站推广网站
  • 建设局合同备案是哪个网站百度发布信息的免费平台
  • 找人做网站如何起诉怎么做营销推广
  • php网页制作源代码seo推广教程seo高级教程
  • 做齐鲁油官方网站网站排名怎么做
  • 电商商城网站开发线上营销怎么推广
  • 怎么在网站上做排名软件推广赚钱
  • 可靠的中小型网站建设网站怎么做优化排名
  • 做商城网站应该注意什么搜索引擎优化解释
  • 上海专业网站建设公司电话网站seo技术
  • 网站运营托管咨询新闻摘抄大全
  • 做网站设计制作的公司营销推广48个方法
  • 启迪网站建设招聘百度投诉中心在线申诉
  • 企业网站开发有哪些手机端搜索引擎排名
  • 外贸网站制作需求厦门seo推广
  • 做网站建设优化的公司排名seo 优化 服务