ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

spring—AOP

2021-05-03 17:02:20  阅读:117  来源: 互联网

标签:spring void System AOP println UserService public out


AOP(Aspect Oriented Programming)
面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
即:AOP在不改变原有代码的基础上,增加新的功能

名词解释:

1.横切关注点:跨越应用程序多个模块的方法或功能。与我们业务逻辑无关的,但是我们需要关注的部分就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 .... 2.切面(ASPECT):横切关注点被模块化的特殊对象。即,它是一个类。 3.通知(Advice):切面必须要完成的工作。它是类中的一个方法。 4.目标(Target):被通知对象。 5.代理(Proxy):向目标对象应用通知之后创建的对象。 6.切入点(PointCut):切面通知执行的 “地点”的定义。 7.连接点(JointPoint):与切入点匹配的执行点。

需要导入依赖包

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

方式一:通过Spring API实现

首先编写我们的业务接口和实现类

public interface UserService {
    public void add();
    public void delete();
    public void update();
    public void select();
}
package com.spring.demo;

public class UserServiceImpl implements UserService {
    @Override
    public void add() {
        System.out.println("添加用户信息");
    }

    @Override
    public void delete() {
        System.out.println("删除用户信息");
    }

    @Override
    public void update() {
        System.out.println("修改用户信息");
    }

    @Override
    public void select() {
        System.out.println("查询用户信息");
    }
}

然后去写我们的增强类 , 我们编写两个 , 一个前置增强 一个后置增强

//前置增强类
public class Log implements MethodBeforeAdvice {
    @Override
    //method:要执行目标对象的方法
    //objects:被调用目标方法的参数
    //o:目标对象
    public void before(Method method, Object[] objects, Object o) throws Throwable {
        System.out.println(o.getClass().getName() + "类的" + method.getName() + "方法被执行");
    }
}
//后置增强类
public class AfterLog implements AfterReturningAdvice {
    @Override
    //o:返回值
    //method:被调用的方法
    //objects:被调用方法对象的参数
    //o1:被调用的目标对象
    public void afterReturning(Object o, Method method, Object[] objects, Object o1) throws Throwable {
        System.out.println(o1.getClass().getName() + "中的" + method.getName() + "方法被执行 " + "返回值:" + o);
    }
}

之后我们编写配置文件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: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/aop/spring-aop.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd">

    <!--注册bean-->
    <bean id="userServiceImpl" class="com.spring.demo.UserServiceImpl"/>
    <bean id="log" class="com.spring.demo.log.Log"/>
    <bean id="afterLog" class="com.spring.demo.log.AfterLog"/>

    <!--方式一:使用原生的Spring API接口-->
    <!--AOP的配置-->
    <aop:config>
        <!--切入点(我们需要在哪个地方去执行):execution(要执行的位置  .*(..)表示任意方法下的任意参数)  -->
        <aop:pointcut id="pointcut" expression="execution(* com.spring.demo.UserServiceImpl.*(..))" />
        <!--执行环绕增强-->
        <aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>

</beans>

测试

@Test
public void aopTest(){
   ApplicationContext applicationContext = new ClassPathXmlApplicationContext("ApplicationContext.xml");
   //动态代理的是接口
    UserService userService = (UserService)applicationContext.getBean("userServiceImpl");
    userService.add();
}

在这里插入图片描述

方式二:自定义类来实现AOP

自定义切入类:

public class Log {
    public void beforeLog(){
        System.out.println("方法执行前");
    }
    public void afterLog(){
        System.out.println("方法执行后");
    }
}

配置xml文件:

<!--方式二:自定义类实现-->
<bean id="log" class="com.spring.demo.diy.Log"/>
<aop:config>
    <aop:aspect ref="log">
        <!--切入点(我们需要在哪个地方去执行):execution(要执行的位置)  -->
        <!--* com.spring.demo.UserServiceImpl.*(..)
           第一个*:表示返回值类型
           第二个*:表示该类下的所有方法
           (..):表示该方法下的任意参数
        -->
        <aop:pointcut id="pointcut" expression="execution(* com.spring.demo.UserServiceImpl.*(..))"/>
        <aop:before pointcut-ref="pointcut" method="beforeLog"/>
        <aop:after pointcut-ref="pointcut" method="afterLog"/>
    </aop:aspect>
</aop:config>

测试:

@Test
public void aopTest(){
   ApplicationContext applicationContext = new ClassPathXmlApplicationContext("ApplicationContext.xml");
   //动态代理的是接口
    UserService userService = (UserService)applicationContext.getBean("userServiceImpl");
    userService.delete();
}

在这里插入图片描述

标签:spring,void,System,AOP,println,UserService,public,out
来源: https://blog.csdn.net/sundan614/article/details/116377022

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有