java项目的注解日志配置,Spring Aop之AspectJ注解配置实现日志管理的方法,aopaspectj...

编程入门 行业动态 更新时间:2024-10-13 22:24:02

java项目的<a href=https://www.elefans.com/category/jswz/34/1768912.html style=注解日志配置,Spring Aop之AspectJ注解配置实现日志管理的方法,aopaspectj..."/>

java项目的注解日志配置,Spring Aop之AspectJ注解配置实现日志管理的方法,aopaspectj...

Spring Aop之AspectJ注解配置实现日志管理的方法,aopaspectj

最近项目要做一个日志功能,我用Spring Aop的注解方式来实现。

创建日志注解

package com.wyj.annotation;

import java.lang.annotation.Documented;

import java.lang.annotation.ElementType;

import java.lang.annotation.Retention;

import java.lang.annotation.RetentionPolicy;

import java.lang.annotation.Target;

/**

* 日志注解

*

*

* @author:WangYuanJun

* @date:2016年8月26日 下午8:25:35

*/

@Target(ElementType.METHOD)

@Retention(RetentionPolicy.RUNTIME)

@Documented

public @interface SysLog {

String action() default "";//动作

}

创建切面通知类

记录操作的方法名,参数和花费的时间,使用环绕通知

package com.wyj.aspect;

import java.lang.reflect.Method;

import org.aspectj.lang.ProceedingJoinPoint;

import org.aspectj.lang.annotation.Around;

import org.aspectj.lang.annotation.Aspect;

import org.aspectj.lang.annotation.Pointcut;

import org.aspectj.lang.reflect.MethodSignature;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Component;

import com.wyj.annotation.SysLog;

import com.wyj.entity.SysLogEntity;

import com.wyj.service.SysLogService;

/**

* 日志切面通知

*

*

* @author:WangYuanJun

* @date:2016年8月26日 下午10:28:57

*/

@Aspect

@Component

public class SysLogAspect {

@Autowired

private SysLogService sysLogService;

/**

* 切入点

*/

@Pointcut("@annotation(com.wyj.annotation.SysLog)")

public void pointCut() {}

/**

* 环绕通知

*

* @param joinPoint

* @return

* @throws Throwable

*/

@Around("pointCut()")

public Object aroud(ProceedingJoinPoint joinPoint) throws Throwable {

// 开始时间

long beginTime = System.currentTimeMillis();

// 执行目标方法

Object result = joinPoint.proceed();

// 执行时长(毫秒)

long time = System.currentTimeMillis() - beginTime;

// 保存日志

saveSysLog(joinPoint, time);

return result;

}

/**

* 保存日志

*

* @param joinPoint

* @param time

*/

private void saveSysLog(ProceedingJoinPoint joinPoint, long time) {

MethodSignature signature = (MethodSignature) joinPoint.getSignature();

Method method = signature.getMethod();

SysLogEntity sysLogEntity = new SysLogEntity();

SysLog sysLog = method.getAnnotation(SysLog.class);

if (sysLog != null) {

// 注解上的描述

sysLogEntity.setOperation(sysLog.action());

}

// 获取目标类名

String className = joinPoint.getTarget().getClass().getName();

// 获取方法名

String methodName = signature.getName();

sysLogEntity.setMethod(className + "." + methodName + "()");

// 请求的参数

Object[] args = joinPoint.getArgs();

if (args != null && args.length != 0 && args[0] != null) {

sysLogEntity.setParams(args[0].toString());

}

sysLogEntity.setTime(time);

// 保存系统日志

sysLogService.save(sysLogEntity);

}

}

扫描和启动aop注解

日志注解的应用

效果

以上这篇Spring Aop之AspectJ注解配置实现日志管理的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持帮客之家。

更多推荐

java项目的注解日志配置,Spring Aop之AspectJ注解配置实现日志管理的方法,aopaspectj...

本文发布于:2024-02-10 22:43:17,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1677729.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:注解   日志   方法   项目   java

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!