springboot aop 自定义注解方式实现一套完善的日志记录

一:功能简介

本文主要记录如何使用aop切面的方式来实现日志记录功能。

主要记录的信息有: 操作人,方法名,参数,运行时间,操作类型(增删改查),详细描述,返回值。

二:项目结构图

如果想学习Java工程化、高性能及分布式、深入浅出。微服务、Spring,MyBatis,Netty源码分析的朋友可以加我的Java高级交流:854630135,群里有阿里大牛直播讲解技术,以及Java大型互联网技术的视频免费分享给大家。

三:代码实现

1.配置文件

这里只有两个配置:1)server.port=11000,设置项目启动的端口号,防止被其他服务占用;2)spring.aop.auto=true,开启spring的aop配置,简单明了,不需要多配置其他的配置或注解。application.yml文件server: port:11000spring: aop: auto:true#启动aop配置

2.AOP切点类

这个是最主要的类,可以使用自定义注解或针对包名实现AOP增强。

1)这里实现了对自定义注解的环绕增强切点,对使用了自定义注解的方法进行AOP切面处理;

2)对方法运行时间进行监控;

3)对方法名,参数名,参数值,对日志描述的优化处理;

在方法上增加@Aspect 注解声明切面,使用@Pointcut 注解定义切点,标记方法。

使用切点增强的时机注解:@Before,@Around,@AfterReturning,@AfterThrowing,@After

packagecom.wwj.springboot.aop;importcom.alibaba.fastjson.JSON;importcom.wwj.springboot.annotation.OperationLogDetail;importcom.wwj.springboot.model.OperationLog;importorg.aspectj.lang.JoinPoint;importorg.aspectj.lang.ProceedingJoinPoint;importorg.aspectj.lang.annotation.*;importorg.aspectj.lang.reflect.MethodSignature;importorg.springframework.stereotype.Component;importjava.util.Date;importjava.util.HashMap;importjava.util.Map;importjava.util.UUID;/**

* Created by IntelliJ IDEA

*

* @author weiwenjun

* @date 2018/9/12

*/@Aspect@Componentpublicclass LogAspect {/**

* 此处的切点是注解的方式,也可以用包名的方式达到相同的效果

* '@Pointcut("execution(* com.wwj.springboot.service.impl.*.*(..))")'

*/@Pointcut("@annotation(com.wwj.springboot.annotation.OperationLogDetail)")publicvoidoperationLog(){}/**

* 环绕增强,相当于MethodInterceptor

*/@Around("operationLog()")publicObjectdoAround(ProceedingJoinPoint joinPoint)throwsThrowable {Objectres =null;longtime = System.currentTimeMillis();try{ res = joinPoint.proceed(); time = System.currentTimeMillis() - time;returnres; }finally{try{//方法执行完成后增加日志addOperationLog(joinPoint,res,time); }catch(Exception e){ System.out.println("LogAspect 操作失败:"+ e.getMessage()); e.printStackTrace(); } } }privatevoidaddOperationLog(JoinPoint joinPoint,Objectres,longtime){ MethodSignature signature = (MethodSignature)joinPoint.getSignature(); OperationLog operationLog =newOperationLog(); operationLog.setRunTime(time); operationLog.setReturnValue(JSON.toJSONString(res)); operationLog.setId(UUID.randomUUID().toString()); operationLog.setArgs(JSON.toJSONString(joinPoint.getArgs())); operationLog.setCreateTime(newDate()); operationLog.setMethod(signature.getDeclaringTypeName() +"."+ signature.getName()); operationLog.setUserId("#{currentUserId}"); operationLog.setUserName("#{currentUserName}"); OperationLogDetail annotation = signature.getMethod().getAnnotation(OperationLogDetail.class);if(annotation !=null){ operationLog.setLevel(annotation.level()); operationLog.setDescribe(getDetail(((MethodSignature)joinPoint.getSignature()).getParameterNames(),joinPoint.getArgs(),annotation)); operationLog.setOperationType(annotation.operationType().getValue()); operationLog.setOperationUnit(annotation.operationUnit().getValue()); }//TODO 这里保存日志System.out.println("记录日志:"+ operationLog.toString());// operationLogService.insert(operationLog);}/**

* 对当前登录用户和占位符处理

* @param argNames 方法参数名称数组

* @param args 方法参数数组

* @param annotation 注解信息

* @return 返回处理后的描述

*/privateStringgetDetail(String[] argNames,Object[] args, OperationLogDetail annotation){ Mapmap=newHashMap<>(4);for(inti =0;i < argNames.length;i++){map.put(argNames[i],args[i]); }Stringdetail = annotation.detail();try{ detail ="'"+"#{currentUserName}"+"'=》"+ annotation.detail();for(Map.Entry entry :map.entrySet()) {Objectk = entry.getKey();Objectv = entry.getValue(); detail = detail.replace("{{"+ k +"}}", JSON.toJSONString(v)); } }catch(Exception e){ e.printStackTrace(); }returndetail; } @Before("operationLog()")publicvoiddoBeforeAdvice(JoinPoint joinPoint){ System.out.println("进入方法前执行....."); }/**

* 处理完请求,返回内容

* @param ret

*/@AfterReturning(returning ="ret", pointcut ="operationLog()")publicvoiddoAfterReturning(Objectret) { System.out.println("方法的返回值 : "+ ret); }/**

* 后置异常通知

*/@AfterThrowing("operationLog()")publicvoidthrowss(JoinPoint jp){ System.out.println("方法异常时执行....."); }/**

* 后置最终通知,final增强,不管是抛出异常或者正常退出都会执行

*/@After("operationLog()")publicvoidafter(JoinPoint jp){ System.out.println("方法最后执行....."); }}

3.自定义注解

package com.wwj.springboot.annotation;import com.wwj.springboot.enums.OperationType;import com.wwj.springboot.enums.OperationUnit;import java.lang.annotation.*;/**

* Created by IntelliJ IDEA

*

* @author weiwenjun

* @date 2018/9/12*/

//@OperationLogDetail(detail = "通过手机号[{{tel}}]获取用户名",level = 3,operationUnit = OperationUnit.USER,operationType = OperationType.SELECT)

@Documented

@Target({ElementType.METHOD})

@Retention(RetentionPolicy.RUNTIME)

public @interface OperationLogDetail {

/** * 方法描述,可使用占位符获取参数:{{tel}}*/

String detail() default "";

/** * 日志等级:自己定,此处分为1-9*/

int level() default 0;

/** * 操作类型(enum):主要是select,insert,update,delete*/

OperationType operationType() default OperationType.UNKNOWN;

/** * 被操作的对象(此处使用enum):可以是任何对象,如表名(user),或者是工具(redis)*/

OperationUnit operationUnit() default OperationUnit.UNKNOWN;

}

4.注解用到的枚举类型

package com.wwj.springboot.enums;/**

* Created by IntelliJ IDEA

*

* @author weiwenjun

* @date 2018/9/12

*/publicenumOperationType {/**

* 操作类型

*/UNKNOWN("unknown"), DELETE("delete"), SELECT("select"), UPDATE("update"), INSERT("insert");privateStringvalue;publicStringgetValue(){returnvalue; }publicvoidsetValue(Stringvalue){this.value=value; } OperationType(String s) {this.value= s; }}package com.wwj.springboot.enums;/**

* Created by IntelliJ IDEA

* 被操作的单元

* @author weiwenjun

* @date 2018/9/12

*/publicenumOperationUnit {/**

* 被操作的单元

*/UNKNOWN("unknown"), USER("user"), EMPLOYEE("employee"), Redis("redis");privateStringvalue; OperationUnit(Stringvalue) {this.value=value; }publicStringgetValue(){returnvalue; }publicvoidsetValue(Stringvalue){this.value=value; }}

5.日志记录对象

如果想学习Java工程化、高性能及分布式、深入浅出。微服务、Spring,MyBatis,Netty源码分析的朋友可以加我的Java高级交流:854630135,群里有阿里大牛直播讲解技术,以及Java大型互联网技术的视频免费分享给大家。

package com.wwj.springboot.model;importjava.util.Date;/**

* Created by IntelliJ IDEA

*

* @author weiwenjun

* @date 2018/9/12

*/publicclassOperationLog {privateStringid;privateDatecreateTime;/**

* 日志等级

*/privateInteger level;/**

* 被操作的对象

*/privateStringoperationUnit;/**

* 方法名

*/privateStringmethod;/**

* 参数

*/privateStringargs;/**

* 操作人id

*/privateStringuserId;/**

* 操作人

*/privateStringuserName;/**

* 日志描述

*/privateStringdescribe;/**

* 操作类型

*/privateStringoperationType;/**

* 方法运行时间

*/privateLong runTime;/**

* 方法返回值

*/privateStringreturnValue;@OverridepublicStringtoString() {return"OperationLog{"+"id='"+ id +'\''+", createTime="+ createTime +", level="+ level +", operationUnit='"+ operationUnit +'\''+", method='"+ method +'\''+", args='"+ args +'\''+", userId='"+ userId +'\''+", userName='"+ userName +'\''+", describe='"+ describe +'\''+", operationType='"+ operationType +'\''+", runTime="+ runTime +", returnValue='"+ returnValue +'\''+'}'; }publicLong getRunTime() {returnrunTime; }publicvoidsetRunTime(Long runTime) {this.runTime = runTime; }publicStringgetReturnValue() {returnreturnValue; }publicvoidsetReturnValue(StringreturnValue) {this.returnValue = returnValue; }publicStringgetId() {returnid; }publicvoidsetId(Stringid) {this.id = id; }publicDategetCreateTime() {returncreateTime; }publicvoidsetCreateTime(DatecreateTime) {this.createTime = createTime; }publicInteger getLevel() {returnlevel; }publicvoidsetLevel(Integer level) {this.level = level; }publicStringgetOperationUnit() {returnoperationUnit; }publicvoidsetOperationUnit(StringoperationUnit) {this.operationUnit = operationUnit; }publicStringgetMethod() {returnmethod; }publicvoidsetMethod(Stringmethod) {this.method = method; }publicStringgetArgs() {returnargs; }publicvoidsetArgs(Stringargs) {this.args = args; }publicStringgetUserId() {returnuserId; }publicvoidsetUserId(StringuserId) {this.userId = userId; }publicStringgetUserName() {returnuserName; }publicvoidsetUserName(StringuserName) {this.userName = userName; }publicStringgetDescribe() {returndescribe; }publicvoidsetDescribe(Stringdescribe) {this.describe = describe; }publicStringgetOperationType() {returnoperationType; }publicvoidsetOperationType(StringoperationType) {this.operationType = operationType; }}

6.springboot启动类

packagecom.wwj.springboot;importorg.springframework.boot.SpringApplication;importorg.springframework.boot.autoconfigure.SpringBootApplication;/** * Created by IntelliJ IDEA * *@authorweiwenjun *@date2018/9/12 */@SpringBootApplicationpublicclassAopApplication{publicstaticvoidmain(String[] args) { SpringApplication.run(AopApplication.class); }}

7.controller类

packagecom.wwj.springboot.controller;importcom.wwj.springboot.service.UserService;importorg.springframework.beans.factory.annotation.Autowired;importorg.springframework.stereotype.Controller;importorg.springframework.web.bind.annotation.RequestMapping;importorg.springframework.web.bind.annotation.RequestParam;importorg.springframework.web.bind.annotation.ResponseBody;/**

* Created by IntelliJ IDEA

*

* @author weiwenjun

* @date 2018/9/12

*/@Controller@RequestMapping("user")public class UserController { @Autowiredprivate UserService userService;/**

* 访问路径 http://localhost:11000/user/findUserNameByTel?tel=1234567

* @param tel 手机号

* @return userName

*/@ResponseBody@RequestMapping("/findUserNameByTel") public String findUserNameByTel(@RequestParam("tel") String tel){returnuserService.findUserName(tel); }}

8.Service类

packagecom.wwj.springboot.service;/** * Created by IntelliJ IDEA * *@authorweiwenjun *@date2018/9/13 */publicinterfaceUserService{/** * 获取用户信息 *@return*@paramtel */StringfindUserName(String tel);}

9.ServiceImpl类

packagecom.wwj.springboot.service.impl;importcom.wwj.springboot.annotation.OperationLogDetail;importcom.wwj.springboot.enums.OperationType;importcom.wwj.springboot.enums.OperationUnit;importcom.wwj.springboot.service.UserService;importorg.springframework.stereotype.Service;/**

* Created by IntelliJ IDEA

*

* @author weiwenjun

* @date 2018/9/13

*/@Servicepublic class UserServiceImpl implements UserService { @OperationLogDetail(detail="通过手机号[{{tel}}]获取用户名",level =3,operationUnit = OperationUnit.USER,operationType = OperationType.SELECT) @Override public String findUserName(String tel) {System.out.println("tel:"+tel);return"zhangsan"; }}

四:MAVEM依赖

本项目有两个pom文件,父类的pom文件主要作用是对子类pom文件依赖的版本号进行统一管理。

1.最外层的pom文件配置如下

<?xml version="1.0"encoding="UTF-8"?>4.0.0com.wwj.springbootspringbootpom1.0-SNAPSHOTspringboot-aop<!-- Inherit defaults from Spring Boot -->org.springframework.bootspring-boot-starter-parent2.0.4.RELEASE1.2.49<!-- Import dependency management from Spring Boot -->org.springframework.bootspring-boot-dependencies2.0.4.RELEASEpomimportcom.alibabafastjson${fastjson.version}

2.子pom文件配置如下

<?xml version="1.0"encoding="UTF-8"?>springbootcom.wwj.springboot1.0-SNAPSHOT4.0.0springboot-aoporg.springframework.bootspring-boot-starter-web<!-- spring-boot aop依赖配置引入 -->org.springframework.bootspring-boot-starter-aopcom.alibabafastjson

五:运行结果

进入方法前执行.....tel:1234567记录日志:OperationLog{id='cd4b5ba7-7580-4989-a75e-51703f0dfbfc', createTime=Fri Sep1408:54:55CST2018, level=3, operationUnit='user', method='com.wwj.springboot.service.impl.UserServiceImpl.findUserName', args='["1234567"]', userId='#{currentUserId}', userName='#{currentUserName}', describe=''#{currentUserName}'=》通过手机号["1234567"]获取用户名', operationType='select', runTime=4, returnValue='"zhangsan"'}方法最后执行.....方法的返回值 : zhangsan

如果想学习Java工程化、高性能及分布式、深入浅出。微服务、Spring,MyBatis,Netty源码分析的朋友可以加我的Java高级交流:854630135,群里有阿里大牛直播讲解技术,以及Java大型互联网技术的视频免费分享给大家。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,294评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,493评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,790评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,595评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,718评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,906评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,053评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,797评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,250评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,570评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,711评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,388评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,018评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,796评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,023评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,461评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,595评论 2 350

推荐阅读更多精彩内容