VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 编程开发 > Java教程 >
  • 7 AOP

7 AOP

module:spring-09-aop

什么是AOP

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

image-20201210143117654

AOP在Spring中的作用

提供声明式事务;允许用户自定义切面

以下名词需要了解下:

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

image-20201210143243920

SpringAOP中,通过Advice定义横切逻辑,Spring中支持5种类型的Advice:

image-20201210143451709

即AOP在不改变原有代码的情况下,去增加新的功能!

使用Spring实现AOP

【重点】使用AOP织入,需要导入相应的jar包

        <!--使用aop开发-->
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjweaver</artifactId>
            <version>1.9.4</version>
        </dependency>

第一种方式:

通过 Spring API 实现

1、编写业务类的接口和实现类:

package com.zzb.service;

public interface UserService {

    public void add();
    public void delete();
    public void update();
    public void select();
}
package com.zzb.service;

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 select() {
        System.out.println("查询一个用户");
    }
}

2、编写环绕增强类,一个前置增强,一个后置增强:

package com.zzb.log;

import org.springframework.aop.MethodBeforeAdvice;

import java.lang.reflect.Method;

public class Log implements MethodBeforeAdvice {

    public void before(Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了" + target.getClass().getName() + "的" + method.getName() + "方法");

     }
}
package com.zzb.log;

import org.springframework.aop.AfterReturningAdvice;

import java.lang.reflect.Method;

public class AfterLog implements AfterReturningAdvice {
    public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
        System.out.println("执行了" + target.getClass().getName() + "的" + method.getName() + "方法,返回值为" + returnValue);
    }
}

3、配置Spring的配置文件,并且实现AOP的切入,注意约束导入。

<?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 id="userService" class="com.zzb.service.UserServiceImpl"/>
    <bean id="log" class="com.zzb.log.Log"/>
    <bean id="afterLog" class="com.zzb.log.AfterLog"/>


    <!--方法一: 使用原生Spring API 接口-->
    <!--配置AOP,需要导入AOP的约束-->
    <aop:config>
        <!--expression(返回值 包名 类名 方法名 参数类型)-->
        <aop:pointcut id="pointcut" expression="execution(* com.zzb.service.UserServiceImpl.*(..))"/>

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

</beans>

4、测试

    @Test
    public void test(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userService = context.getBean("userService", UserService.class);
        userService.add();
        System.out.println("==============================================================");
        userService.delete();
    }

测试结果:

执行了com.zzb.service.UserServiceImpl的add方法
增加一个用户
执行了com.zzb.service.UserServiceImpl的add方法,返回值为null
============================
执行了com.zzb.service.UserServiceImpl的delete方法
删除一个用户
执行了com.zzb.service.UserServiceImpl的delete方法,返回值为null

Spring的AOP就是将公共的业务 (日志 , 安全等) 和领域业务结合起来 , 当执行领域业务时 , 将会把公共业务加进来 . 实现公共业务的重复利用 . 领域业务更纯粹 , 程序员专注领域业务 , 其本质还是动态代理 。

第二种方式:

自定义类来实现AOP,目标业务依然是userServiceImpl

1、编写一个切入类

package com.zzb.diy;

public class DiyPointCut {

    public void before(){
        System.out.println("===============使用方法前===================");
    }

    public void after(){
        System.out.println("===============使用方法后===================");
    }
}

2、配置Spring的配置文件

    <!--方法二: 使用切面-->
    <bean id="diy" class="com.zzb.diy.DiyPointCut"/>
    <aop:config>
        <aop:aspect ref="diy">
            <aop:pointcut id="pointcut" expression="execution(* com.zzb.service.UserServiceImpl2.*(..))"/>
            <aop:before method="before" pointcut-ref="pointcut"/>
            <aop:after method="after" pointcut-ref="pointcut"/>
        </aop:aspect>
    </aop:config>

3、测试

    @Test
    public void test(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userService = context.getBean("userService", UserService.class);
        userService.add();
        System.out.println("==============================================================");
        userService.delete();
    }

测试结果:

===============使用方法前===================
增加一个用户
===============使用方法后===================
==============================================================
===============使用方法前===================
删除一个用户
===============使用方法后===================

第三种方式:

使用注解实现

1、编写一个注解实现的增强类

package com.zzb.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;

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

    @Before("execution(* com.zzb.service.UserServiceImpl.*(..))")
    public void before(){
        System.out.println("-------------程序运行前----------------");
    }

    @After("execution(* com.zzb.service.UserServiceImpl.*(..))")
    public void after(){
        System.out.println("-------------程序运行后----------------");
    }

    @Around("execution(* com.zzb.service.UserServiceImpl.*(..))")
    public void around(ProceedingJoinPoint jp) throws Throwable {
        System.out.println("前");

        // 执行方法,jp相当于切入点
        Object o = jp.proceed();
        // 获得方法签名
        System.out.println(jp.getSignature());

        System.out.println("后");
        System.out.println(o);
    }
}

2、配置Spring的配置文件

    <aop:aspectj-autoproxy/>
    <bean id="annotationPointCut" class="com.zzb.diy.AnnotationPointCut"/>

3、测试

    @Test
    public void test(){
        ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
        UserService userService = context.getBean("userService", UserService.class);
        userService.add();
        System.out.println("==============================================================");
        userService.delete();
    }

测试结果:

前
-------------程序运行前----------------
增加一个用户
void com.zzb.service.UserService.add()
后
null
-------------程序运行后----------------
==============================================================
前
-------------程序运行前----------------
删除一个用户
void com.zzb.service.UserService.delete()
后
null
-------------程序运行后----------------

关于 aop:aspectj-autoproxy/

通过aop命名空间的<aop:aspectj-autoproxy />声明自动为spring容器中那些配置@aspectJ切面的bean创建代理,织入切面。当然,spring 在内部依旧采用AnnotationAwareAspectJAutoProxyCreator进行自动代理的创建工作,但具体实现的细节已经被<aop:aspectj-autoproxy />隐藏起来了

<aop:aspectj-autoproxy />有一个proxy-target-class属性,默认为false,表示使用jdk动态代理织入增强,当配为<aop:aspectj-autoproxy poxy-target-class="true"/>时,表示使用CGLib动态代理技术织入增强。不过即使proxy-target-class设置为false,如果目标类没有声明接口,则spring将自动使用CGLib动态代理。

 
来源:https://www.cnblogs.com/zzbstudy/p/14116014.html


相关教程