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面向切面

AOP

面向切面编程

在Spring中,提供声明式事务,允许自定义切面

  • 横切关注点:跨越app多个模块的方法或功能,与业务逻辑无关(日志、安全、缓存、事务等等)
  • 切面:横切关注点被模块化的特殊对象,类
  • 通知:切面必须完成的工作,类中的方法
  • 日志:被通知的对象
  • 代理:向目标对象应用通知之后创建的对象
  • 切入点:切面通知执行的“地点”的定义
  • 连接点:与切入点匹配的执行点

使用Spring 实现 AOP

导包

<!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.9.9.1</version>
</dependency>

方式一:使用Spring的接口

SpringAPI接口实现

  1. 接口

    public interface UserService{
        public void add();
        public void delete();
        public void update();
        public void query();
    }
    
  2. 实现类

    public class UserServiceImpl implements UserService{
        public void add() {
            System.out.println("添加商品");
        }
    
        public void delete() {
            System.out.println("删除商品");
        }
    
        public void update() {
            System.out.println("修改商品");
        }
    
        public void query() {
            System.out.println("查找商品");
        }
    }
    
  3. 切入日志功能

    import org.springframework.aop.MethodBeforeAdvice;
    
    import java.lang.reflect.Method;
    
    public class Log implements MethodBeforeAdvice {
        //method: 要执行的目标对象的方法
        //object: 参数
        //target: 目标对象
        public void before(Method method, Object[] args, Object target) throws Throwable {
            System.out.println(target.getClass().getName() + "的" + method.getName() + "被执行了");
        }
    }
    
    import org.springframework.aop.AfterReturningAdvice;
    
    import java.lang.reflect.Method;
    
    public class AfterLog implements AfterReturningAdvice {
        //returnValue: 返回值
        public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
            System.out.println("执行了" + method.getName() + "方法,返回结果为:" + returnValue);
        }
    }
    
  4. 配置 applicationContext.xml

    <?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:aop="http://www.springframework.org/schema/aop"
           xsi:schemaLocation="http://www.springframework.org/schema/beans
            https://www.springframework.org/schema/beans/spring-beans.xsd
            http://www.springframework.org/schema/aop
            https://www.springframework.org/schema/aop/spring-aop.xsd">
    
        <!--注册bean-->
        <bean id="userService" class="com.yl.service.UserServiceImpl"/>
        <bean id="log" class="com.yl.log.Log"/>
        <bean id="afterLog" class="com.yl.log.AfterLog"/>
    
        <!--方式一:使用原生Spring API接口-->
        <!--配置AOP 需导入aop的约束-->
        <aop:config>
            <!--切入点pointcut  expression:表达式  -->
            <aop:pointcut id="pointcut" expression="execution(* com.yl.service.UserServiceImpl.*(..))"/>
            <!--执行环绕增加-->
            <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
            <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    
        </aop:config>
    
    </beans>
    
  5. 测试

    import com.yl.service.UserService;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    
    public class ApplicationTest {
        public static void main(String[] args) {
            ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
            //注意:动态代理代理的是接口
            UserService userService = (UserService) context.getBean("userService");
    
            userService.add();
            userService.query();
    
        }
    }
    

aop --> 动态代理

方式二:自定义实现AOP

切面定义

public class DiyPointCut {
    public void before(){
        System.out.println("方法执行前...");
    }

    public void after(){
        System.out.println("方法执行后...");
    }
}
    <!--方式二:自定义类-->
    <bean id="diy" class="com.yl.diy.DiyPointCut"/>

    <aop:config>
        <!--自定义切面 ref 要引用的类-->
        <aop:aspect ref="diy">
            <!--切入点-->
            <aop:pointcut id="point" expression="execution(* com.yl.service.UserServiceImpl.*(..))"/>
            <!--通知-->
            <aop:before method="before" pointcut-ref="point"/>
            <aop:after method="after" pointcut-ref="point"/>
        </aop:aspect>
    </aop:config>
import com.yl.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class ApplicationTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //注意:动态代理代理的是接口
        UserService userService = (UserService) context.getBean("userService");

        userService.add();
        userService.query();

    }
}

方式三:使用注解实现

//使用注解实现aop
import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.Signature;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect //标注该类是一个切面
public class AnnotationPointCut {

    @Before("execution(* com.yl.service.UserServiceImpl.*(..))")
    public void before(){
        System.out.println("方法执行前...");
    }

    @After("execution(* com.yl.service.UserServiceImpl.*(..))")
    public void after(){
        System.out.println("方法执行后...");
    }

    //在环绕增强中,给定一个参数,代表要获取处理切入的点
    @Around("execution(* com.yl.service.UserServiceImpl.*(..))")
    public void around(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("环绕前");

        Signature signature = joinPoint.getSignature(); //获得签名
        System.out.println("signature:" + signature);

        //执行方法
        Object proceed = joinPoint.proceed();
        System.out.println("环绕后");
    }
}
<!--方式三-->
<bean id="annotationPointCut" class="com.yl.diy.AnnotationPointCut"/>

<!--开启注解支持  默认JDK实现(proxy-target-class="false") cglib(proxy-target-class="true")    方式不同结果相同-->
<aop:aspectj-autoproxy/>
public class ApplicationTest {
    public static void main(String[] args) {
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        //注意:动态代理代理的是接口
        UserService userService = (UserService) context.getBean("userService");

        userService.add();
    }
}

在不影响原来业务类的情况下,实现动态增强

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-05-24 17:59:01  更:2022-05-24 17:59:16 
 
开发: 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/23 20:07:19-

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