IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> Spring中AOP的详解 -> 正文阅读

[Java知识库]Spring中AOP的详解

Spring AOP

什么是AOP
1、AOP为Aspect Oriented Programming的缩写,意为:面向切面编程。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
2、不通过更改源代码,在主干功能添加新的功能



AOP底层原理

1、AOP底层使用动态代理
(1)有接口情况,使用JDK动态代理

	创建接口实现类代理对象,增加类的方法	

(2)无接口情况,使用CGLIB动态代理

	创建子类的代理对象,增加类的方法

提示:以下是本篇文章正文内容,下面案例可供参考

一、JDK动态代理

1、使用JDK动态代理,使用PRoxy类里面的方法创建代理对象

(1)调用newProxyInstance方法

newProxyInstance(ClassLoader loader,<?>[] interfaces, InvocationHandler h)
	方法的三个参数
	- 类加载器
	- 增强方法所在的类,这个类实现的接口,支持多个接口
	- 实现这个接口InvocationHandler,创建代理对象,写增强方法

2、编写JDK动态代理代码

(1)创建接口,定义方法
(2)创建接口实现类,实现方法
(3)使用Proxy类创建接口代理对象

(1)创建接口,定义方法

public interface UserDao {
    public int add(int a,int b);
    public String update(String id);
}

(2)创建接口实现类,实现方法

public class UserDaoImpl implements UserDao{
    @Override
    public int add(int a, int b) {
        return a+b;
    }

    @Override
    public String update(String id) {
        return id;
    }
}

(3)使用Proxy类创建接口代理对象

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.Arrays;

public class JDKProxy {
    public static void main(String[] args) {
        //创建接口实现类对象
        Class[] interfaces = {UserDao.class};

        UserDaoImpl userDao = new UserDaoImpl();

//      匿名内部类的方式
//      Proxy.newProxyInstance(JDKProxy.class.getClassLoader(), interfaces, new InvocationHandler() {
//          @Override
//          public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
//              return null;
//          }
//      });


        UserDao dao= (UserDao) Proxy.newProxyInstance(JDKProxy.class.getClassLoader(),interfaces,new UserDaoProxy(userDao));
        int result= dao.add(1,2);
        System.out.println("result"+result);
    }

}
class UserDaoProxy implements InvocationHandler{
    //把创建的是谁的代理对象,把谁传入
    //有参构造传递
    private  Object obj;
    public UserDaoProxy(Object obj){
        this.obj=obj;
    }
    //增强的逻辑
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {

        //在方法之前
        System.out.println("方法之前..."+method.getName()+"传递参数"+ Arrays.toString(args));

        //被增强方法执行
        Object res = method.invoke(obj,args);

        //方法之后
        System.out.println("方法之后..."+obj);
        return res;
    }
}

AOP(术语)

1、连接点

类里面那些方法可以被增强,这些方法就被称为连接点
class User{
    add();
    update();
    select();
    delete();
}

上述四个都可为连接点


2、切入点

实际真正被增强的方法成为切入点

3、通知(增强)

(1)实际被增强的部分称为通知
(2)通知有多种类型
		-前置通知
		-后置通知
		-环绕通知
		-异常通知
		-最终通知

4、切面

(1)把通知应用到切入点的过程叫切面

AOP操作(准备)

1、Spring框架中一般基于AspectJ实现AOP操作

(1)什么是AspectJ

AspectJ不是Spring组成部分,独立AOP框架,
一般把AspectJ和Spring框架一起使用,进行AOP操作

2、基于AspectJ实现AOP操作

(1)基于XML配置文件实现
(2)基于注解方式实现(使用)

3、在项目刚才李引入AOP相关依赖

在这里插入图片描述


4、切入点表达式

重点
(1)切入点表达式作用:知道对哪个类里面的哪个方法进行增强
(2)语法结构:

execution( [权限修饰符] [返回类型] [类全路径] [方法名称] ([参数列表]))

举例1:
对com.ke.dao.BookDao类里面的add进行增强

//*表示任何类型  返回类型可省略   ..代表参数
execution(* com.ke.dao.BookDao.add(..))

举例2:
对com.ke.dao.BookDao类里面的所有进行增强

execution(* com.ke.dao.BookDao.*(..))

举例2:
对com.ke.dao包里面的所有类,所有方法进行增强

execution(* com.ke.dao.*.*(..))

AOP操作(ASpectJ注解)

1、创建类,在类里面定义方法

public class User {
    public void add() {
        System.out.println("add.....");
    }
}

2、创建增强类(编写增强逻辑)

(1)在增强类里面,创建方法,让不同方法代表不同通知类型

//增强类
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/context"
       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">
<!--开启注解扫描-->
    <context:component-scan base-package="com.ke.aop"></context:component-scan>
</beans>

(2)使用注解创建User和UserProxy对象

//被增强的类
@Component
public class User {


//增强类
@Component
public class UserProxy {

(3)在增强类上面添加注解@Aspect

@Component
@Aspect   //生成代理对象
public class UserProxy {

(4)在Spring配置文件中开启生成代理对象

    <!--开启AspectJ生成代理对象-->
    <aop:aspectj-autoproxy></aop:aspectj-autoproxy>

4、配置不同类型的通知

(1)在增强类的里面,在作为通知方法上面添加通知类型注解,使用切入点表达式配置

//增强类
@Component
@Aspect   //生成代理对象
public class UserProxy {
    //前置通知
    @Before(value="execution(* com.ke.aop.User.add(..))")
    public void before(){
        System.out.println("before....");
    }

    //after有异常可以通知
    //方法执行之后执行
    @After(value="execution(* com.ke.aop.User.add(..))")
    public void after(){
        System.out.println("after....");
    }
    //后置通知
    //AfterReturning有异常可以通知
    //方法返回数据之后执行
    @AfterReturning(value="execution(* com.ke.aop.User.add(..))")
    public void afterReturning(){
        System.out.println("AfterReturning....");
    }

    //异常通知
    @AfterThrowing(value="execution(* com.ke.aop.User.add(..))")
    public void afterThrowing(){
        System.out.println("AfterThrowing....");
    }

    //环绕通知
    @Around(value="execution(* com.ke.aop.User.add(..))")
    public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{

        System.out.println("Around..环绕之前..");
        //被增强的方法执行
        proceedingJoinPoint.proceed();
        System.out.println("Around..环绕之后..");
    }

}

测试:

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

5、对相同的切入点进行抽取

//增强类
@Component
@Aspect   //生成代理对象
public class UserProxy {

    //切入点抽取
    @Pointcut(value="execution(* com.ke.aop.User.add(..))")
    public void pointdemo(){

    }

    //前置通知
    @Before(value="pointdemo()")
    public void before(){
        System.out.println("before....");
    }
}

6、有多个增强类对同一个方法进行增强,可以设置优先级

(1)在增强类上面添加注解@Order(数值)

		-数值越小 优先级越高

7、完全使用注解开发

(1)创建配置类,不需要创建xml文件

@Configuration
@ComponentScan(basePackages = {"com.ke.aopxml"})
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class Config {
}


AOP操作(ASpectJ配置文件)

很少使用
1、创建两个类,增强类和被增强类,创建方法

public class Book {
    public void buy(){
        System.out.println("buy...");
    }
}


public class BookProxy {
    public void before(){
        System.out.println("before....");
    }
}

2、在Spring配置文件中创建两个类对象

<!--对象创建-->
    <bean id="book" class="com.ke.aopxml.Book"></bean>
    <bean id="bookProxy" class="com.ke.aopxml.BookProxy"></bean>

3、在Spring配置文件中配置切入点

<!--配置aop增强-->
<aop:config>
    <!--切入点-->
     <aop:pointcut id="p" expression="execution(* com.ke.aopxml.Book.buy(..))"/>
    <!--配置切点-->
    <aop:aspect ref="bookProxy">
    <!--增强作用在具体的方法上-->
        <aop:before method="before" pointcut-ref="p"></aop:before>
    </aop:aspect>
 </aop:config>

AOP结束!

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章           查看所有文章
加:2022-11-05 00:12:25  更:2022-11-05 00:19:38 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/30 4:59:54-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码