SpringAop的三种实现方式

本文介绍Spring框架中AOP(面向切面编程)的概念及其三种实现方式:使用Spring API接口、自定义切面及注解方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一. 什么是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();
    }
}

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值