【Spring】实现AOP==>基于注解实现

package com.test.dao;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class TestAop {

    @Test
    public void testAopAnno() {
        ApplicationContext context =
                new ClassPathXmlApplicationContext("bean1.xml");
        User user = context.getBean("user", User.class);
        user.add();    //执行被增强的方法
    }
}

package com.test.dao;

import org.springframework.stereotype.Component;

//被增强的类
@Component
public class User {
    public void add() {
        //【抛出异常】int i = 10/0;
        System.out.println("add.......");
    }
}
package com.test.dao;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;


@Component
@Aspect  //生成代理对象
@Order(3)
public class UserProxy {

    //相同切入点抽取
    @Pointcut(value = "execution(* com.test.dao.User.add(..))")
    public void pointdemo() {
    }
    //前置通知

    @Before(value  = "pointdemo()")  pointdemo()等价 "execution(* com.test.dao.User.add(..))"
    public void before() {
        System.out.println("add()执行前,执行.........");
    }
   

    //后置通知
    @AfterReturning(value = "execution(* com.test.dao.User.add(..))")
    public void afterReturning() {
        System.out.println("add()执行后,执行==>后置通知.........");
    }

    
    //最终通知
    @After(value = "execution(* com.test.dao.User.add(..))")
    public void after() {
        System.out.println("add()执行完,执行==>最终通知.........");
    }

    //异常通知
    @AfterThrowing(value = "execution(* com.test.dao.User.add(..))")
    public void afterThrowing() {
        System.out.println("add()执行异常,执行.........");
    }

    //环绕通知
    @Around(value = "execution(* com.test.dao.User.add(..))")
    public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
        System.out.println("环绕之前.........");

        //被增强的方法执行
        proceedingJoinPoint.proceed();

        System.out.println("环绕之后.........");
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值