SpringAop的三种实现方式

一. 什么是Aop(定义)
AOP(Aspect Oriented Programming)意为:面向切面编程,通过预编译方式和运行期动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
二. Aop在Spring中的作用(定义)
提供声明式事务;允许用户自定义切面
横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志,安全,缓存,事务等。
切面(ASPECT): 横切关注点 被模块化的 特殊对象。即,他是一个类。
通知(Advice): 切面必须要完成的工作。即,它是类中的一个方法。
目标(Target): 被通知对象。
代理(Proxy): 向目标对象应用通知之后创建的对象。
切入点(PointCut): 切面通知 执行的“地点”的定义。
连接点(JointPoint): 与切入点匹配的执行点。
三. 三种实现方式
【重点】使用AOP织入,需要导入一个依赖包

<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.9.4</version>
</dependency>

方式一:使用Spring的API接口(主要是SpringApi接口实现)
UserService

	package com.aop.service;

/**
 * @author 国洪志
 * @date 2021/11/2 22:03
 */
public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}

UserServiceImpl
package com.aop.service;

/**
 * @author 国洪志
 * @date 2021/11/2 22:04
 */
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 query() {
        System.out.println("查询一个用户");
    }
}

BeforeLog

package com.aop.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

/**
 * @author 国洪志
 * @date 2021/11/2 22:15
 */

public class BeforeLog implements MethodBeforeAdvice {

    @Override
    /**
     * method:要执行的目标对象的方法
     * args : 参数
     * target : 目标对象
     */
    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
    }
}

AfterLog

package com.aop.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

/**
 * @author 国洪志
 * @date 2021/11/2 22:20
 */
public class AfterLog implements AfterReturningAdvice {
    @Override
    //returnValue ; 返回值
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了"+method.getName() + "返回结果为"+returnValue);
    }
}

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.aop.service.UserServiceImpl"/>
    <bean id="beforeLog" class="com.aop.log.BeforeLog"/>
    <bean id="afterLog" class="com.aop.log.AfterLog"/>

    <!--  配置AOP : 需要导入AOP的约束 -->
    <aop:config>
        <!--切入点:expression:表达式,execution(要执行的位置)-->
        <aop:pointcut id="pointcut" expression="execution(* com.aop.service.UserServiceImpl.*(..))"/>

        <!--    执行环绕增加!    -->
        <aop:advisor advice-ref="beforeLog" pointcut-ref="pointcut"/>
        <aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
    </aop:config>
</beans>

MyTest

import com.aop.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author 国洪志
 * @date 2021/11/2 22:40
 */
public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context= new ClassPathXmlApplicationContext("ApplicationContext.xml");
        UserService userService = (UserService) context.getBean("userService");
        userService.add();
    }
}

方式二:自定义来实现AOP(主要是切面定义)

UserService

package com.aop.service;

/**
 * @author 国洪志
 * @date 2021/11/2 22:03
 */
public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}

UserServiceImpl

package com.aop.service;

/**
 * @author 国洪志
 * @date 2021/11/2 22:04
 */
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 query() {
        System.out.println("查询一个用户");
    }
}

DiyPointCut

package com.aop.diy;

/**
 * @author 国洪志
 * @date 2021/11/2 22:51
 */
public class DiyPointCut {
    public void before(){
        System.out.println("======方法执行前=====");
    }


    public void alter(){
        System.out.println("======方法执行后=====");
    }
}

ApplicationContext

<?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.aop.service.UserServiceImpl"/>
    <bean id="diy" class="com.aop.diy.DiyPointCut"/>

    <aop:config>
        <!--    自定义切面,ref要引用的类    -->
        <aop:aspect ref="diy">
            <!-- 切入点  -->
            <aop:pointcut id="point" expression="execution(* com.aop.service.UserServiceImpl.*(..))"/>
            
            <!-- 通知 这里method="before" 就是DiyPointCut里面的before方法 -->
            <aop:before method="before" pointcut-ref="point"></aop:before>
            <aop:after method="alter" pointcut-ref="point"></aop:after>
        </aop:aspect>

    </aop:config>
</beans>

MyTest

import com.aop.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author 国洪志
 * @date 2021/11/2 22:40
 */
public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context= new ClassPathXmlApplicationContext("ApplicationContext.xml");
        UserService userService = (UserService) context.getBean("userService");
        userService.add();
    }
}

方式三:使用注解实现

UserService


package com.aop.service;

/**
 * @author 国洪志
 * @date 2021/11/2 22:03
 */
public interface UserService {
    void add();
    void delete();
    void update();
    void query();
}

UserServiceImpl

package com.aop.service;

/**
 * @author 国洪志
 * @date 2021/11/2 22:04
 */
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 query() {
        System.out.println("查询一个用户");
    }
}

AnnotationPointCut

package com.aop.diy;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Around;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

/**
 * @author 国洪志
 * @date 2021/11/2 23:06
 */

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

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

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

    @Around("execution(* com.aop.service.UserServiceImpl.*(..))")
    public void around(ProceedingJoinPoint pj) throws Throwable {
        System.out.println("环绕前");
        Object proceed = pj.proceed();
        System.out.println("环绕后");
    }

}

ApplicationContext

<?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.aop.service.UserServiceImpl"/>
    <bean id="annotationPointCut" class="com.aop.diy.AnnotationPointCut"/>
    <!--开启注解支持-->
    <aop:aspectj-autoproxy />
</beans>

MyTest

import com.aop.service.UserService;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author 国洪志
 * @date 2021/11/2 22:40
 */
public class MyTest {
    public static void main(String[] args) {
        ApplicationContext context= new ClassPathXmlApplicationContext("ApplicationContext.xml");
        UserService userService = (UserService) context.getBean("userService");
        userService.add();
    }
}

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring AOP(面向切面编程)是Spring框架中的一个重要模块,它提供了一种在程序运行期间动态地将额外的行为织入到代码中的方式。通过使用Spring AOP,我们可以将与业务逻辑无关的横切关注点(如日志记录、性能统计、事务管理等)从业务逻辑中分离出来,使得代码更加清晰、可维护和可扩展。 Spring AOP实现主要依赖于以下几个核心概念: 1. 切面(Aspect):切面是一个模块化的单元,它封装了与横切关注点相关的行为。在Spring AOP中,切面可以包含通知(Advice)和切点(Pointcut)。 2. 通知(Advice):通知定义了在切面的特定位置执行的代码。在Spring AOP中,有以下几种类型的通知: - 前置通知(Before):在目标方法执行之前执行。 - 后置通知(After):在目标方法执行之后执行,无论是否发生异常。 - 返回通知(After-returning):在目标方法正常返回之后执行。 - 异常通知(After-throwing):在目标方法抛出异常后执行。 - 环绕通知(Around):包围目标方法的执行,在前后都可以添加额外的逻辑。 3. 切点(Pointcut):切点定义了在哪些连接点(Joinpoint)上应用通知。通过使用切点表达式,我们可以指定需要拦截的方法或类。 4. 连接点(Joinpoint):连接点是在应用程序执行过程中能够插入切面的点,如方法调用、异常抛出等。 5. 织入(Weaving):织入是将切面应用到目标对象并创建代理对象的过程。Spring AOP支持编译时织入、类加载时织入和运行时织入三种方式

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值