1:自定义注解(贴到所需要记录日志的方法上) 我的注解级别设置的是METHOD
@Target({ElementType.PARAMETER, ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface OrderLog {
String value() default "";
}
2:创建拦截类 也就是说你要做日志的操作
/**
* Created by LiCC on 2019/7/18.
*/
@Aspect
@Component
public class OrderAspect {
@Autowired//你的业务service
private ISysLogService sysLogService;
@Pointcut("@annotation(com.xxx.xxx.annotion.OrderLog)")
public void logPoinCut() {
}
@Around("logPoinCut()")
public Object doAround(ProceedingJoinPoint pjp) throws Throwable {
//从切面织入点处通过反射机制获取织入点处的方法
MethodSignature signature = (MethodSignature) pjp.getSignature();
//获取切入点所在的方法
Method method = signature.getMethod();
Object result=null;
//获取操作
OrderLog operation = method.getAnnotation( OrderLog.class );
if (operation != null) {
//如果方法上没有贴有系统记录日志注解 即可不用去保存日志信息
// 获取输入参数
if(pjp.getArgs()[0]!=null){
String requestParam = JSON.toJSONString( pjp.getArgs()[0] );
JSONObject jsonParam = (JSONObject) (new JSONParser().parse( requestParam ));
//获取请求的方法名
String methodName = method.getName();
//这里的 pjp.proceed()不可调用二次 没记错的话调用两次后最终返回的result回为null
result=pjp.proceed();
}
}
return result;
}
}
3:最终在你想要记录日志的方法上贴上最初创建的自定义注解即可拦截
@OrderLog("创建订单")
@ApiOperation("创建订单,订单状态为新建")
@PostMapping(value = "createOrder")//LiCC
public CreateHotelOrderResponse createOrder(CreateHotelOrderRequest request){
Integer orderFromType = request.getOrderFromType();
if(HotelCostant.HotelFrom.JL.getCode()==orderFromType){
return buyerOrderService.createJlOrder(request);
}else {
return buyerOrderService.createMtOrder(request);
}
}