Spring AOP 超简洁小葵花宝典

一、AOP关键词

注解关键词
AspectJ切面:就是一个标准的类,在切面类中定义切面方法
joinPoint连接点:切面方法里的参数,可以获取到目标类、目标方法的信息
Target Class / Method目标类、目标方法
PointCut切入点:使用execution表达式,指定要切入哪个目标类、哪个目标方法上
Advice通知:确定了切入点之后,通知用来确定什么时候执行,例如:before、after…

二、Spring AOP 的xml基本用法

//schema的设置
<?xml version="1.0" encoding="UTF-8"?>
<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"
       xmlns="http://www.springframework.org/schema/beans"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop.xsd">
</beans>
===========================================================================
//AOP配置
    <bean id="methodAspect" class="com.imooc.spring.aop.aspect.MethodAspect"></bean>
    <aop:config>
    	<!-- 规定切入点 -->
        <aop:pointcut id="pointcut" expression="execution(* com.imooc..*Service.*(..))"></aop:pointcut>
        <!-- 设置切面类 -->
        <aop:aspect ref="methodAspect">
        	<!-- 设置通知  设置切入点 -->
            <aop:before method="printExecutionTime" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>

二、JoinPoin的核心方法

核心方法说法
JoinPoint.getTarget()获取目标类 对象
JoinPoint.getTarget().getClass().getName ()获取目标 类名称
JoinPoint.getSignature() .getName()获取目标 方法名
JoinPoint.getArgs()获取目标 方法参数

三、PointCut 的 execution表达式

在这里插入图片描述

四、Advice 的五种通知类型

在这里插入图片描述

五、基于注解 开发Spring AOP

用注解 ===>>> 开启组件扫描:

										 	//注解配置Bean
<context:component-scan base-package="com.test.spring.ioc.entity"></context:component-scan>
//启用Spring AOP注解模式
<aop:aspectj-autoproxy/>

1、找到 切面类 添加 @Component + @Aspect

2、找到对应的切面方法 添加 @Advice("execution(* com.imooc..*Service.*(..))")

六、Spring AOP底层的实现原理

Spring基于代理模式实现功能动态扩展,其中包含两种形式:
1、目标类拥有接口,通过JDK动态代理实现功能扩展
2、目标类没有接口,通过CGLib组件实现功能扩展

七、代理模式

//接口
public interface UserService {
    public void createUser();
}
//接口实现类
public class UserServiceImpl implements UserService {
    @Override
    public void createUser() {
        System.out.println("执行创建用户的业务逻辑");
    }
}
//程序入口
public class Application {
    public static void main(String[] args) {
        UserService userService = new UserServiceImpl();
        userService.createUser();
    }
}
//运行输出: ====>>> 执行创建用户的业务逻辑

7.1、静态代理

==================添加功能:获取 createUser方法 执行的时间==================

//创建代理类:

    //代理类和委托类 都要实现相同的接口
public class UserServiceProxy implements UserService{
    //通过有参构造,在创建代理类时,就可以 ==> 持有委托类的对象
    private UserService userService;
    public UserServiceProxy(UserService userService) {
        this.userService = userService;
    }

    public void createUser() {
        System.out.println("======"+ new SimpleDateFormat("yyyy-MM-dd HH:mm:ss SSS").format(new Date())+"======");
        userService.createUser();
    }
}

//程序入口
public class Application {
    public static void main(String[] args) {
        UserService userServiceProxy = new UserServiceProxy(new UserServiceImpl());
            userServiceProxy.createUser();
    }
}
//运行输出: ====>>> 			======2020-07-13 20:51:34 247======
//	    							执行创建用户的业务逻辑

7.2、动态代理

==================添加功能:获取 createUser方法 执行的时间==================

public class ProxyInvocationHandler implements InvocationHandler {
    private Object target;//目标对象
    public ProxyInvocationHandler(Object target) {
        this.target = target;
    }
    /**
     * @param proxy 代理类对象
     * @param method    目标方法的对象
     * @param args  目标方法的参数
     * @return  目标方法运行后返回值
     * @throws Throwable
     * 该方法和反射有关。而且和Advice里的Around 非常相似。
     */
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("======要添加的业务======");
        //下面开启 执行目标方法
        Object ret = method.invoke(target, args);
        return ret;
    }
    public static void main(String[] args) {
        UserService userService = new UserServiceImpl();
        ProxyInvocationHandler proxyInvocationHandler = new ProxyInvocationHandler(userService);
        //动态创建代理类
        UserService userServiceProxy = (UserService) Proxy.newProxyInstance(userService.getClass().getClassLoader(),
                userService.getClass().getInterfaces(),proxyInvocationHandler);
        userServiceProxy.createUser();
    }

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值