原来实现AOP这么简单

在这篇文章中,原来理解AOP这么简单 我们用简单的例子理解了AOP,今天用一个小demo,看看怎么实现!

自定义注解

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface LogAnnotaion {
    String module() default "";

    String operator() default "";
}

定义切面

@Component  //能够让spring找到它
@Aspect //切面 定义了通知和切点的关系
@Slf4j
public class LogAspect {

    @Pointcut("@annotation(com.example.aopdemo.LogAnnotaion)")//切点
//    @Pointcut("execution(public * com.example.aopdemo.AopService.*)")//类里所有方法都是切点
    public void pt() {
    }

    //环绕通知
    @Around("pt()")
    public Object log(ProceedingJoinPoint joinPoint) throws Throwable {
        long beginTime = System.currentTimeMillis();

        Object result = joinPoint.proceed();

        long endTime = System.currentTimeMillis();

        recordLog(joinPoint, endTime - beginTime);
        return result;
    }

    @Before("pt()")
    public void logBefore(JoinPoint joinPoint) throws Throwable {
        log.info("方法执行之前"+joinPoint.getArgs().toString());
    }

    @After("pt()")
    public void logAfter() throws Throwable {
        log.info("方法执行之后");
    }

    private void recordLog(ProceedingJoinPoint joinPoint, long l) {
        System.out.println();
        log.info("执行方法"+joinPoint.getTarget().getClass().getName()  +"====执行时间:==="+ l);
    }
}

Controller

@RestController
@RequestMapping("/api")
public class AopController {

    @Autowired
    private AopService aopService;

    @GetMapping("/getName")
    public String getName(String name){
        return aopService.getName(name);
    }
}

Service 添加自定义注解

@Service
@Slf4j
public class AopService {

    @LogAnnotaion(module = "检查项", operator = "添加检查项")
    public String getName(String name){
        log.info("方法执行之中");
        return name;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

杨幂等

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值