Spring Aop注解实现

Spring-aop-理论知识 Spring-Aop-注解实现 项目结构图

Spring Aop注解实现_第1张图片

具体步骤:

1、创建maven 项目 导入依赖 创建好项目结构

    
        
            org.projectlombok
            lombok
            1.18.18
        
        
            junit
            junit
            4.12
            test
        
        
            org.springframework
            spring-context
            5.3.4
        
        
            org.springframework
            spring-beans
            5.3.4
        
        
            org.springframework
            spring-core
            5.3.4
        
        
            org.springframework
            spring-expression
            5.3.4
        
        
            org.springframework
            spring-aop
            5.3.4
        
        
            org.aspectj
            aspectjweaver
            1.9.6
        
    

2、写一个接口 及 其实现类

/**
 * @version 1.0
 * @author: crush
 * @date: 2021-03-05 10:26
 */
public interface TestDao {
    public void delete();
}
/**
 * @version 1.0
 * @author: crush
 * @date: 2021-03-05 10:27
 */
@Service
public class TestDaoImpl implements TestDao {
    public void delete() {
        System.out.println("正在执行的方法-->删除");
    }
}

3、切面类

/**
 * @version 1.0
 * @author: crush
 * @date: 2021-03-10 18:04
 */
@Aspect
@Component
public class MyAspectAnnotation {
    @Pointcut("execution(* com.dao.*.*(..))")
    private void myPointCut(){
    }
    /**
     * 前置通知 使用JoinPoint 接口作为参数获得目标对象的信息
     *    @Before("myPointCut()") ==
     *    
     **/
    @Before("myPointCut()")
    public void before(JoinPoint jp){
        System.out.print("前置通知:模拟权限控制");
        System.out.println("目标对象:"+jp.getTarget()+",被增强的方法:"+jp.getSignature().getName());
    }
    @AfterReturning("myPointCut()")
    public void afterReturning(JoinPoint jp){
        System.out.print("后置返回通知:"+"模拟删除临时文件");
        System.out.println(",被增强的方法"+jp.getSignature().getName());
    }
    @Around("myPointCut()")
    public Object around(ProceedingJoinPoint pjp) throws Throwable {
        System.out.println("环绕开始:执行目标方法前,模拟开启事务");
        Object obj = pjp.proceed();
        System.out.println("环绕结束:执行目标方法后,模拟关闭事务");
        return obj;
    }
    @AfterThrowing(value = "myPointCut()",throwing = "throwable")
    public void except(Throwable throwable){
        System.out.println("异常通知:"+"程序执行异常"+throwable.getMessage());
    }

    @After("myPointCut()")
    public void after(){
        System.out.println("最终通知:释放资源");
    }

}

4、application.xml 文件



        
        
        
        

测试

    @Test
    public void Test(){
        ApplicationContext applicationContext = new ClassPathXmlApplicationContext("applicationContext.xml");
        TestDao testDao = applicationContext.getBean("testDaoImpl", TestDaoImpl.class);
        testDao.delete();
        /**
         * 输出:
         * 环绕开始:执行目标方法前,模拟开启事务
         * 前置通知:模拟权限控制目标对象:com.dao.TestDaoImpl@2bef51f2,被增强的方法:delete
         * 正在执行的方法-->删除
         * 后置返回通知:模拟删除临时文件,被增强的方法delete
         * 最终通知:释放资源
         * 环绕结束:执行目标方法后,模拟关闭事务
         */
    }

总结

本篇文章就到这里了,希望能给你带来帮助,也希望您能够多多关注脚本之家的更多内容!

你可能感兴趣的:(Spring Aop注解实现)