您好,登录后才能下订单哦!
前言
在我们日常的开发过程中通过打印详细的日志信息能够帮助我们很好地去发现开发过程中可能出现的Bug
,特别是在开发Controller
层的接口时,我们一般会打印出Request
请求参数和Response
响应结果,但是如果这些打印日志的代码相对而言还是比较重复的,那么我们可以通过什么样的方式来简化日志打印的代码呢?
SpringBoot 通过自定义注解实现权限检查可参考我的博客:SpringBoot 通过自定义注解实现权限检查
正文
Spring AOP
Spring AOP 即面向切面,是对OOP
面向对象的一种延伸。
AOP
机制可以让开发者把业务流程中的通用功能抽取出来,单独编写功能代码。在业务流程执行过程中,Spring
框架会根据业务流程要求,自动把独立编写的功能代码切入到流程的合适位置。
我们通过AOP
机制可以实现:Authentication
权限检查、Caching
缓存、Context passing
内容传递、Error handling
错误处理、日志打印等功能,这里我们讲一下怎么用Spring AOP
来实现日志打印。
SpringBoot通过自定义注解实现日志打印
Maven依赖
<!--lombok--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.2</version> <optional>true</optional> </dependency> <!--Spring AOP--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-aop</artifactId> </dependency>
ControllerMethodLog.class自定义注解
@Retention
: 用来修饰注解,是注解的注解,称为元注解。@Target
:用来说明对象的作用范围@Documented
:用来做标记使用/** * 自定义注解用于打印Controller层方式日志 */ @Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface ControllerMethodLog { }
这里特别讲一下@Retention
,按生命周期来划分可分为3类:
RetentionPolicy.SOURCE
:注解只保留在源文件,当Java
文件编译成class
文件的时候,注解被遗弃(运行时去动态获取注解信息);RetentionPolicy.CLASS
:注解被保留到class
文件,但jvm
加载class
文件时候被遗弃,这是默认的生命周期(在编译时进行一些预处理操作);RetentionPolicy.RUNTIME
:注解不仅被保存到class
文件中,jvm
加载class
文件之后,仍然存在(做一些检查性的操作);这3个生命周期分别对应于:Java
源文件(.java
文件) —> .class
文件 —> 内存中的字节码。
Spring AOP切面方法的执行顺序
这里简单介绍一下,切面的执行方法和其执行顺序:
@Around
通知方法将目标方法封装起来@Before
通知方法会在目标方法调用之前执行@After
通知方法会在目标方法返回或者异常后执行@AfterReturning
通知方法会在目标方法返回时执行@Afterthrowing
通知方法会在目标方法抛出异常时执行这里以一个返回正常的情况为例:(异常替换最后一步即可)
ControllerMethodLogAspect.class:用于打印日志的切面定义类
注意要在启动类扫描这个class
,并且添加 @EnableAspectJAutoProxy(proxyTargetClass = true)
@Slf4j @Component @Aspect public class ControllerMethodLogAspect { @Pointcut("@annotation(com.xiyuan.demo.annotation.ControllerMethodLog)") public void pointCut() { } /** * 在切点运行前执行该方法 */ @Before("pointCut()") public void doBefore(JoinPoint joinPoint) { MethodSignature signature = (MethodSignature) joinPoint.getSignature(); Method method = signature.getMethod(); ControllerMethodLog annotation = method.getAnnotation(ControllerMethodLog.class); if (Objects.isNull(annotation)) { return; } String methodName = method.getDeclaringClass().getSimpleName() + "." + method.getName(); log.info("start {}:入参:{}", methodName, JSON.toJSONString(joinPoint.getArgs())); } /** * 在切点运行后,无异常时执行该方法 * * @param joinPoint * @param result */ @AfterReturning(value = "pointCut()", returning = "result") public void afterReturn(JoinPoint joinPoint, Object result) { MethodSignature signature = (MethodSignature) joinPoint.getSignature(); Method method = signature.getMethod(); ControllerMethodLog annotation = method.getAnnotation(ControllerMethodLog.class); if (Objects.isNull(annotation)) { return; } String methodName = method.getDeclaringClass().getSimpleName() + "." + method.getName(); log.info("end {}:响应:{}", methodName, JSON.toJSONString(result)); } }
验证
getUserById:根据id获取用户的信息
@GetMapping("/getUserById") @ApiOperation(value = "根据用户id获取用户") @ControllerMethodLog public ResponseResult getUserById(@RequestParam(name = "id", required = true) String id) { UserInfoPojo userInfoPojo = userService.getUserById(id); return ResponseResult.success(userInfoPojo, ConstantsUtil.QUERY_SUCCESS); }
Swagger接口信息如下:
IDEA控制台打印信息如下:
总结
到此这篇关于SpringBoot通过自定义注解实现日志打印的示例代码的文章就介绍到这了,更多相关SpringBoot自定义注解日志打印内容请搜索亿速云以前的文章或继续浏览下面的相关文章希望大家以后多多支持亿速云!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。