欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解Spring学习总结——Spring实现AOP的多种方式

程序员文章站 2024-03-09 13:05:29
目录 一、基于xml配置的spring aop 二、使用注解配置aop 三、aspectj切点函数 四、aspectj通知注解 五、零配置实现...

目录

一、基于xml配置的spring aop

二、使用注解配置aop

三、aspectj切点函数

四、aspectj通知注解

五、零配置实现spring ioc与aop

aop(aspect oriented programming)面向切面编程,通过预编译方式和运行期动态代理实现程序功能的横向多模块统一控制的一种技术。aop是oop的补充,是spring框架中的一个重要内容。利用aop可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。aop可以分为静态织入与动态织入,静态织入即在编译前将需织入内容写入目标模块中,这样成本非常高。动态织入则不需要改变目标模块。spring框架实现了aop,使用注解配置完成aop比使用xml配置要更加方便与直观。

详解Spring学习总结——Spring实现AOP的多种方式

一、基于xml配置的spring aop

在讲注解实现aop功能前先用前面学习过的使用xml配置spring aop功能,这样是为了对比以便更好的理解。

1.1、新建一个maven项目,添加引用,项目的pom.xml文件如下:

详解Spring学习总结——Spring实现AOP的多种方式

<project xmlns="http://maven.apache.org/pom/4.0.0" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance"
 xsi:schemalocation="http://maven.apache.org/pom/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
 <modelversion>4.0.0</modelversion>

 <groupid>com.zhangguo</groupid>
 <artifactid>spring052</artifactid>
 <version>0.0.1-snapshot</version>
 <packaging>jar</packaging>

 <name>spring052</name>
 <url>http://maven.apache.org</url>

 <properties>
  <project.build.sourceencoding>utf-8</project.build.sourceencoding>
  <spring.version>4.3.0.release</spring.version>
 </properties>
 <dependencies>
  <dependency>
   <groupid>junit</groupid>
   <artifactid>junit</artifactid>
   <scope>test</scope>
   <version>4.10</version>
  </dependency>
  <dependency>
   <groupid>org.springframework</groupid>
   <artifactid>spring-context</artifactid>
   <version>${spring.version}</version>
  </dependency>
  <dependency>
   <groupid>org.aspectj</groupid>
   <artifactid>aspectjweaver</artifactid>
   <version>1.8.9</version>
  </dependency>
  <dependency>
   <groupid>cglib</groupid>
   <artifactid>cglib</artifactid>
   <version>3.2.4</version>
  </dependency>
 </dependencies>
</project>

1.2、创建要被代理的math类,代码如下:

package com.zhangguo.spring052.aop01;

/**
 * 被代理的目标类
 */
public class math{
 //加
 public int add(int n1,int n2){
  int result=n1+n2;
  system.out.println(n1+"+"+n2+"="+result);
  return result;
 }
 
 //减
 public int sub(int n1,int n2){
  int result=n1-n2;
  system.out.println(n1+"-"+n2+"="+result);
  return result;
 }
 
 //乘
 public int mut(int n1,int n2){
  int result=n1*n2;
  system.out.println(n1+"x"+n2+"="+result);
  return result;
 }
 
 //除
 public int div(int n1,int n2){
  int result=n1/n2;
  system.out.println(n1+"/"+n2+"="+result);
  return result;
 }
}

1.3、编辑aop中需要使用到的通知类advices.java代码如下:

package com.zhangguo.spring052.aop01;

import org.aspectj.lang.joinpoint;

/**
 * 通知类,横切逻辑
 *
 */
public class advices {
 
 public void before(joinpoint jp){
  system.out.println("----------前置通知----------");
  system.out.println(jp.getsignature().getname());
 }
 
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }
}

1.4、配置容器初始化时需要的xml文件,aop01.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:p="http://www.springframework.org/schema/p"
 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-4.3.xsd">
  
 <!-- 被代理对象 -->
 <bean id="math" class="com.zhangguo.spring052.aop01.math"></bean>
 
 <!-- 通知 -->
 <bean id="advices" class="com.zhangguo.spring052.aop01.advices"></bean>
 
 <!-- aop配置 -->
 <aop:config proxy-target-class="true">
  <!--切面 -->
  <aop:aspect ref="advices">
   <!-- 切点 -->
   <aop:pointcut expression="execution(* com.zhangguo.spring052.aop01.math.*(..))" id="pointcut1"/>
   <!--连接通知方法与切点 -->
   <aop:before method="before" pointcut-ref="pointcut1"/>
   <aop:after method="after" pointcut-ref="pointcut1"/>
  </aop:aspect>
 </aop:config>

</beans>

1.5、测试代码test.java如下:

package com.zhangguo.spring052.aop01;

import org.springframework.context.applicationcontext;
import org.springframework.context.support.classpathxmlapplicationcontext;

public class test {

 public static void main(string[] args) {
  applicationcontext ctx = new classpathxmlapplicationcontext("aop01.xml");
  math math = ctx.getbean("math", math.class);
  int n1 = 100, n2 = 5;
  math.add(n1, n2);
  math.sub(n1, n2);
  math.mut(n1, n2);
  math.div(n1, n2);
 }

}

运行结果:

详解Spring学习总结——Spring实现AOP的多种方式

二、使用注解配置aop

详解Spring学习总结——Spring实现AOP的多种方式

2.1、在上一个示例中修改被代理的类math,为了实现ioc扫描在math类上注解了@service并命名bean为math。相当于上一个示例中在xml配置文件中增加了一个bean,<!-- 被代理对象 --><bean id="math" class="com.zhangguo.spring052.aop01.math"></bean>,math类的代码如下:

package com.zhangguo.spring052.aop02;

import org.springframework.stereotype.service;

/**
 * 被代理的目标类
 */
@service("math")
public class math{
 //加
 public int add(int n1,int n2){
  int result=n1+n2;
  system.out.println(n1+"+"+n2+"="+result);
  return result;
 }
 
 //减
 public int sub(int n1,int n2){
  int result=n1-n2;
  system.out.println(n1+"-"+n2+"="+result);
  return result;
 }
 
 //乘
 public int mut(int n1,int n2){
  int result=n1*n2;
  system.out.println(n1+"x"+n2+"="+result);
  return result;
 }
 
 //除
 public int div(int n1,int n2){
  int result=n1/n2;
  system.out.println(n1+"/"+n2+"="+result);
  return result;
 }
}

 2.2、修改通知类advices,代码中有3个注解,@component表示该类的实例会被spring ioc容器管理;@aspect表示声明一个切面;@before表示before为前置通知,通过参数execution声明一个切点,advices.java代码如下所示:

package com.zhangguo.spring052.aop02;

import org.aspectj.lang.joinpoint;
import org.aspectj.lang.annotation.after;
import org.aspectj.lang.annotation.aspect;
import org.aspectj.lang.annotation.before;
import org.springframework.stereotype.component;

/**
 * 通知类,横切逻辑
 *
 */
@component
@aspect
public class advices {
 @before("execution(* com.zhangguo.spring052.aop02.math.*(..))")
 public void before(joinpoint jp){
  system.out.println("----------前置通知----------");
  system.out.println(jp.getsignature().getname());
 }
 
 @after("execution(* com.zhangguo.spring052.aop02.math.*(..))")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }
}

 上面的代码与下面的配置基本等同

 <!-- 通知 -->
 <bean id="advices" class="com.zhangguo.spring052.aop01.advices"></bean>
 
 <!-- aop配置 -->
 <aop:config proxy-target-class="true">
  <!--切面 -->
  <aop:aspect ref="advices">
   <!-- 切点 -->
   <aop:pointcut expression="execution(* com.zhangguo.spring052.aop01.math.*(..))" id="pointcut1"/>
   <!--连接通知方法与切点 -->
   <aop:before method="before" pointcut-ref="pointcut1"/>
   <aop:after method="after" pointcut-ref="pointcut1"/>
  </aop:aspect>
 </aop:config>

2.3、新增配置文件aop02.xml,在配置ioc的基础上增加了aop:aspectj-autoproxy节点,spring框架会自动为与aspectj切面配置的bean创建代理,proxy-target-class="true"属性表示被代理的目标对象是一个类,而非实现了接口的类,主要是为了选择不同的代理方式。

<?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:p="http://www.springframework.org/schema/p"
 xmlns:aop="http://www.springframework.org/schema/aop"
 xmlns:context="http://www.springframework.org/schema/context"
 xsi:schemalocation="http://www.springframework.org/schema/beans
  http://www.springframework.org/schema/beans/spring-beans.xsd
  http://www.springframework.org/schema/context
  http://www.springframework.org/schema/context/spring-context-4.3.xsd
  http://www.springframework.org/schema/aop
  http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">
  <context:component-scan base-package="com.zhangguo.spring052.aop02">
  </context:component-scan>
  <aop:aspectj-autoproxy proxy-target-class="true"></aop:aspectj-autoproxy>
</beans>

2.4、测试运行代码test.java如下:

package com.zhangguo.spring052.aop02;

import org.springframework.context.applicationcontext;
import org.springframework.context.support.classpathxmlapplicationcontext;

public class test {

 public static void main(string[] args) {
  applicationcontext ctx = new classpathxmlapplicationcontext("aop02.xml");
  math math = ctx.getbean("math", math.class);
  int n1 = 100, n2 = 5;
  math.add(n1, n2);
  math.sub(n1, n2);
  math.mut(n1, n2);
  math.div(n1, n2);
 }

}

运行结果:

详解Spring学习总结——Spring实现AOP的多种方式

三、aspectj切点函数

切点函数可以定位到准确的横切逻辑位置,在前面的示例中我们只使用过execution(* com.zhangguo.spring052.aop02.math.*(..)),execution就是一个切点函数,但该函数只什么方法一级,如果我们要织入的范围是类或某个注解则execution就不那么好用了,其实一共有9个切点函数,有不同的针对性。

@aspectj使用aspectj专门的切点表达式描述切面,spring所支持的aspectj表达式可分为四类:

方法切点函数:通过描述目标类方法信息定义连接点。

方法参数切点函数:通过描述目标类方法入参信息定义连接点。

目标类切点函数:通过描述目标类类型信息定义连接点。

代理类切点函数:通过描述代理类信息定义连接点。

常见的aspectj表达式函数:

  • execution():满足匹配模式字符串的所有目标类方法的连接点
  • @annotation():任何标注了指定注解的目标方法链接点
  • args():目标类方法运行时参数的类型指定连接点
  • @args():目标类方法参数中是否有指定特定注解的连接点
  • within():匹配指定的包的所有连接点
  • target():匹配指定目标类的所有方法
  • @within():匹配目标对象拥有指定注解的类的所有方法
  • @target():匹配当前目标对象类型的执行方法,其中目标对象持有指定的注解
  • this():匹配当前aop代理对象类型的所有执行方法

最常用的是:execution(<修饰符模式>?<返回类型模式><方法名模式>(<参数模式>)<异常模式>?)切点函数,可以满足多数需求。

为了展示各切点函数的功能现在新增一个类strutil,类如下:

package com.zhangguo.spring052.aop03;

import org.springframework.stereotype.component;

@component("strutil")
public class strutil {
 public void show(){
  system.out.println("hello strutil!");
 }
}

测试代码如下:

package com.zhangguo.spring052.aop03;

import org.springframework.context.applicationcontext;
import org.springframework.context.support.classpathxmlapplicationcontext;

public class test {

 public static void main(string[] args) {
  applicationcontext ctx = new classpathxmlapplicationcontext("aop03.xml");
  imath math = ctx.getbean("math", math.class);
  int n1 = 100, n2 = 5;
  math.add(n1, n2);
  math.sub(n1, n2);
  math.mut(n1, n2);
  math.div(n1, n2);
  
  strutil strutil=ctx.getbean("strutil",strutil.class);
  strutil.show();
 }

}

3.1、切点函数execution,通知与切面的定义如下:

package com.zhangguo.spring052.aop03;

import org.aspectj.lang.joinpoint;
import org.aspectj.lang.annotation.after;
import org.aspectj.lang.annotation.aspect;
import org.aspectj.lang.annotation.before;
import org.springframework.stereotype.component;

/**
 * 通知类,横切逻辑
 *
 */
@component
@aspect
public class advices {
 @before("execution(* com.zhangguo.spring052.aop03.math.*(..))")
 public void before(joinpoint jp){
  system.out.println("----------前置通知----------");
  system.out.println(jp.getsignature().getname());
 }
 
 //execution切点函数
 //com.zhangguo.spring052.aop03包下所有类的所有方法被切入
 @after("execution(* com.zhangguo.spring052.aop03.*.*(..))")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }
}

运行结果如下:

详解Spring学习总结——Spring实现AOP的多种方式

execution(<修饰符模式>?<返回类型模式><方法名模式>(<参数模式>)<异常模式>?)

3.2、切点函数within

 //within切点函数
 //com.zhangguo.spring052.aop03包下所有类的所有方法被切入
 @after("within(com.zhangguo.spring052.aop03.*)")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }

详解Spring学习总结——Spring实现AOP的多种方式

3.3、this切点函数

 //this切点函数
 //实现了imath接口的代理对象的任意连接点
 @after("this(com.zhangguo.spring052.aop03.imath)")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }

详解Spring学习总结——Spring实现AOP的多种方式

3.4、args切点函数

 //args切点函数
 //要求方法有两个int类型的参考才会被织入横切逻辑
 @after("args(int,int)")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }

详解Spring学习总结——Spring实现AOP的多种方式

如果参数类型不是基本数据类型则需要包名。

3.5、@annotation切点函数

先自定义一个可以注解在方法上的注解

package com.zhangguo.spring052.aop03;

import java.lang.annotation.documented;
import java.lang.annotation.elementtype;
import java.lang.annotation.retention;
import java.lang.annotation.retentionpolicy;
import java.lang.annotation.target;

@target({elementtype.method})
@retention(retentionpolicy.runtime)
@documented
public @interface myanno {
}


 //@annotation切点函数
 //要求方法必须被注解com.zhangguo.spring052.aop03.myanno才会被织入横切逻辑
 @after("@annotation(com.zhangguo.spring052.aop03.myanno)")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }

package com.zhangguo.spring052.aop03;

import org.springframework.stereotype.component;

@component("strutil")
public class strutil {
 @myanno
 public void show(){
  system.out.println("hello strutil!");
 }
}

运行结果:

详解Spring学习总结——Spring实现AOP的多种方式

其它带@的切点函数都是针对注解的

四、aspectj通知注解

aspectj通知注解共有6个,常用5个,引介少用一些。

先解决定义切点复用的问题,如下代码所示,切点函数的内容完全一样:

package com.zhangguo.spring052.aop04;

import org.aspectj.lang.joinpoint;
import org.aspectj.lang.annotation.after;
import org.aspectj.lang.annotation.aspect;
import org.aspectj.lang.annotation.before;
import org.springframework.stereotype.component;

/**
 * 通知类,横切逻辑
 *
 */
@component
@aspect
public class advices {
 @before("execution(* com.zhangguo.spring052.aop04.math.*(..))")
 public void before(joinpoint jp){
  system.out.println("----------前置通知----------");
  system.out.println(jp.getsignature().getname());
 }
 
 @after("execution(* com.zhangguo.spring052.aop04.math.*(..))")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }
}

可以先定义一个切点然后复用,如下所示:

package com.zhangguo.spring052.aop04;

import org.aspectj.lang.joinpoint;
import org.aspectj.lang.annotation.after;
import org.aspectj.lang.annotation.aspect;
import org.aspectj.lang.annotation.before;
import org.aspectj.lang.annotation.pointcut;
import org.springframework.stereotype.component;

/**
 * 通知类,横切逻辑
 */
@component
@aspect
public class advices {
 //切点
 @pointcut("execution(* com.zhangguo.spring052.aop04.math.*(..))")
 public void pointcut(){
 }
 
 @before("pointcut()")
 public void before(joinpoint jp){
  system.out.println("----------前置通知----------");
  system.out.println(jp.getsignature().getname());
 }
 
 @after("pointcut()")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }
}

修改advices.java文件,增加各种通知类型如下:

package com.zhangguo.spring052.aop04;

import org.aspectj.lang.joinpoint;
import org.aspectj.lang.proceedingjoinpoint;
import org.aspectj.lang.annotation.after;
import org.aspectj.lang.annotation.afterreturning;
import org.aspectj.lang.annotation.afterthrowing;
import org.aspectj.lang.annotation.around;
import org.aspectj.lang.annotation.aspect;
import org.aspectj.lang.annotation.before;
import org.aspectj.lang.annotation.pointcut;
import org.springframework.stereotype.component;

/**
 * 通知类,横切逻辑
 */
@component
@aspect
public class advices {
 //切点
 @pointcut("execution(* com.zhangguo.spring052.aop04.math.a*(..))")
 public void pointcut(){
 }
 
 //前置通知
 @before("pointcut()")
 public void before(joinpoint jp){
  system.out.println(jp.getsignature().getname());
  system.out.println("----------前置通知----------");
 }
 
 //最终通知
 @after("pointcut()")
 public void after(joinpoint jp){
  system.out.println("----------最终通知----------");
 }
 
 //环绕通知
 @around("execution(* com.zhangguo.spring052.aop04.math.s*(..))")
 public object around(proceedingjoinpoint pjp) throws throwable{
  system.out.println(pjp.getsignature().getname());
  system.out.println("----------环绕前置----------");
  object result=pjp.proceed();
  system.out.println("----------环绕后置----------");
  return result;
 }
 
 //返回结果通知
 @afterreturning(pointcut="execution(* com.zhangguo.spring052.aop04.math.m*(..))",returning="result")
 public void afterreturning(joinpoint jp,object result){
  system.out.println(jp.getsignature().getname());
  system.out.println("结果是:"+result);
  system.out.println("----------返回结果----------");
 }
 
 //异常后通知
 @afterthrowing(pointcut="execution(* com.zhangguo.spring052.aop04.math.d*(..))",throwing="exp")
 public void afterthrowing(joinpoint jp,exception exp){
  system.out.println(jp.getsignature().getname());
  system.out.println("异常消息:"+exp.getmessage());
  system.out.println("----------异常通知----------");
 }
}

运行结果:

详解Spring学习总结——Spring实现AOP的多种方式

五、零配置实现spring ioc与aop

为了实现零配置在原有示例的基础上我们新增一个类user,如下所示:

package com.zhangguo.spring052.aop05;

public class user {
 public void show(){
  system.out.println("一个用户对象");
 }
}

该类并未注解,容器不会自动管理。因为没有xml配置文件,则使用一个作为配置信息,applicationcfg.java文件如下:

package com.zhangguo.spring052.aop05;

import org.springframework.context.annotation.bean;
import org.springframework.context.annotation.componentscan;
import org.springframework.context.annotation.configuration;
import org.springframework.context.annotation.enableaspectjautoproxy;

@configuration //用于表示当前类为容器的配置类,类似<beans/>
@componentscan(basepackages="com.zhangguo.spring052.aop05") //扫描的范围,相当于xml配置的结点<context:component-scan/>
@enableaspectjautoproxy(proxytargetclass=true) //自动代理,相当于<aop:aspectj-autoproxy proxy-target-class="true"></aop:aspectj-autoproxy>
public class applicationcfg {
 //在配置中声明一个bean,相当于<bean id=getuser class="com.zhangguo.spring052.aop05.user"/>
 @bean
 public user getuser(){
  return new user();
 }
}

该类的每一部分内容基本都与xml 配置有一对一的关系,请看注释,这样做要比写xml方便,但不便发布后修改。测试代码如下:

package com.zhangguo.spring052.aop05;

import org.springframework.context.applicationcontext;
import org.springframework.context.annotation.annotationconfigapplicationcontext;
import org.springframework.context.support.classpathxmlapplicationcontext;

public class test {

 public static void main(string[] args) {
  // 通过类初始化容器
  applicationcontext ctx = new annotationconfigapplicationcontext(applicationcfg.class);
  math math = ctx.getbean("math", math.class);
  int n1 = 100, n2 = 0;
  math.add(n1, n2);
  math.sub(n1, n2);
  math.mut(n1, n2);
  try {
   math.div(n1, n2);
  } catch (exception e) {
  }
  
  user user=ctx.getbean("getuser",user.class);
  user.show();
 }

}

 advices.java 同上,没有任何变化,运行结果如下:

详解Spring学习总结——Spring实现AOP的多种方式

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。