AOP案例

Posted lizhiwei666

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AOP案例相关的知识,希望对你有一定的参考价值。

package com.jt.aop;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;

@Component
@Aspect
public class RuntimeAOP {

@Around("execution(* com.jt.service..*.*(..))")
public Object around(ProceedingJoinPoint joinPoint) {
Object obj=null;
Long starttime=System.currentTimeMillis();
try {
obj=joinPoint.proceed();
} catch (Throwable e) {
e.printStackTrace();
throw new RuntimeException(e);
}
Long endtime=System.currentTimeMillis();
Class<?> targetclass = joinPoint.getTarget().getClass();
String methodName = joinPoint.getSignature().getName();

System.out.println("目标的对象类型:"+targetclass);
System.out.println("目标方法的名称:"+methodName);
System.out.println("RuntimeAOP[] 执行时间:"+(endtime-starttime)+"毫秒");

return obj;
}
}

以上是关于AOP案例的主要内容,如果未能解决你的问题,请参考以下文章

AOP案例

AOP案例 异常类切面

AOP配置开发入门案例

Spring:入门AOP案例分析

Spring AOP的使用及案例

Spring中AOP的初窥和入门小案例