AOP操作

AOP操作(AspectJ注解)

1、创建类,在类里面定义方法
在这里插入图片描述2、创建增强类(编写增强逻辑)
(1)在增强类里面,创建方法,让不同的方法代表不同的通知类型

package com.atguigu.spring5.collectiontype.aopanno;
//增强类
public class UserProxy {
//前置通知
    public void before(){
        System.out.println("before.....");
    }
}

3、进行通知的配置
(1)在spring的配置文件中,开启注解扫描

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
                        http://www.springframework.org/schema/aop http://www.springframework.org/schema/beans/spring-aop.xsd
                       http://www.springframework.org/schema/context  http://www.springframework.org/schema/beans/spring-context.xsd">
        <!-- 开启注解扫描-->
    <context:component-scan base-package="com.atguigu"></context:component-scan>
</beans>

(2)使用注解创建User和Userproxy对象
在这里插入图片描述在这里插入图片描述

(3)在增强类上面添加注解@Aspect
在这里插入图片描述

(4)在spring配置文件中开启生成代理对象
在这里插入图片描述
4、配置不同类型的通知
(1)在增强类的里面,在作为通知方法上面添加通知类型注解,并且使用切入点表达式来配置。

//增强类
@Component
@Aspect  //生成代理对象
public class UserProxy {
//前置通知
    //@Before注解表示作为前置通知
    @Before(value="execution(* com.atguigu.spring5.collectiontype.aopanno.User.add(..))")
    public void before(){
        System.out.println("before.....");
    }
}

public class TestAop {
    @Test
    public void testAopAnno(){
        ApplicationContext context= new ClassPathXmlApplicationContext("bean1.xml");
        User user = context.getBean("user", User.class);
        user.add();
    }
}

在这里插入图片描述
其他四种类型的通知同理

5、公共切入点抽取
在这里插入图片描述
6、有多个增强类对同一个方法进行增强,设置增强类优先级
(1)在增强类上面添加注解@Order(数字类型值)
//值越小 优先级越高 0 1 2 3 4

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

SCU Polars

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

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

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

打赏作者

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

抵扣说明:

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

余额充值