简单粗暴:使用AOP帮你记录日志
Posted 慕课猿圈圈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单粗暴:使用AOP帮你记录日志相关的知识,希望对你有一定的参考价值。
本文系作者:『Erwin_Feng』原创发布于慕课网 ,转载请注明出处。
第一步
使用这个模块,你必要加入的包依赖:
AOP记录日志模块需要的包依赖(红色边框)
第二步
你需要告诉我,你的切入点(继承LBaseWebLogAspect,并实现 pointCut()方法,配置你的切入点)
@Component
class WebLogAspect extends LBaseWebLogAspect {
@Pointcut("execution(* com.fengwenyi.javalibexampleaoplog..*.*(..))")
@Override
protected void pointCut() { }
}
第三步
写一个接口进行测试,我们还是使用上一次的切口吧(完整代码)
package com.fengwenyi.javalibexampleaoplog;
import com.fengwenyi.javalib.aop.LBaseWebLogAspect;
import com.fengwenyi.javalib.result.DefaultReturnCode;
import com.fengwenyi.javalib.result.Result;
import com.fengwenyi.javalib.result.ResultResponseUtil;
import lombok.Data;
import lombok.experimental.Accessors;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class JavalibExampleAoplogApplication {
public static void main(String[] args) {
SpringApplication.run(JavalibExampleAoplogApplication.class, args);
}
/**
* 获取所有用户数据
* @return (json)
*/
@GetMapping("/getUsers")
public Result getUsers() {
User user1 = new User().setName("冯文议").setAge(26).setGender("男");
User user2 = new User().setName("张三").setAge(25).setGender("女");
User user3 = new User().setName("李四").setAge(23).setGender("保密");
User user4 = new User().setName("王五").setAge(20).setGender("未知");
User [] users = {user1, user2, user3, user4};
return ResultResponseUtil.ok().status(DefaultReturnCode.SUCCESS).data(users);
}
}
@Aspect
@Component
class WebLogAspect extends LBaseWebLogAspect {
@Pointcut("execution(* com.fengwenyi.javalibexampleaoplog..*.*(..))")
@Override
protected void pointCut() { }
}
@Data
@Accessors(chain = true)
class User {
// 姓名
private String name;
// 年龄
private Integer age;
// 性别
private String gender;
}
第四步
AOP记录访问日志
我们放大点,看得仔细
放大点
日志主要记录以下信息:
请求客户端IP
请求URL
请求的方式(GET/POST/…)
请求的类及相应的方法
请求的参数(json格式字符串)
返回的数据对象
此次请求花费的时间(单位:ns;ns 纳秒 1s=1000ms 1ms=1000us 1us=1000ns)
资料
[1] 本节测试代码:
https://github.com/fengwenyi/JavaLibExample/tree/master/JavaLibExampleAopLog
[2] JavaLib:
https://github.com/fengwenyi/JavaLib
ID:mukeyuanqq
投稿请发至:dangwenjing@imooc.com
这里分享最前沿、有用的IT技术干货及职场故事
陪伴程序猿成长
优秀从点滴积累开始
以上是关于简单粗暴:使用AOP帮你记录日志的主要内容,如果未能解决你的问题,请参考以下文章