深入理解springAOP

时间:2022-07-25 15:10:18

  概念:AOP(Aspect-Oriented Programming)即面向切面编程。它是对传统的OOP(面向对象)编程的一种补充,在OOP中往往一个对象有什么行为我们就定义什么方法,对象与对象之间存在紧密联系。与OOP不同的是AOP更加关注的是切面,我们只需要关注于对象的核心业务而不是所有的业务。

深入理解springAOP深入理解springAOP

如同上图1中所示,两个螺丝就是一种紧密耦合的关系, 一旦一方存在问题,另一方也必须做出相应调整。而图2为一个笔记本的USB插口,只要符合这个接口的设备都可以使用这个插口。

在程序中也和现实生活一样,使用spring AOP就是一种典型的非耦合案例,AOP的核心之一就是我们的非核心业务与我们的核心业务解耦。

具体实现:(本例我们模拟一个女孩子的日常生活,去KFC,约会,遛狗几个事务)

第一步:既然是使用spring自然要配置相关环境,然后直接写我们的核心业务,而在一个程序中我们在多个流程中反复出现的一些非核心代码抽取出来由代理给我们管理。我们发现这几个事务之前我们的对象(女孩子)都要洗澡,化妆......之后都要卸妆....这些非逻辑业务便是我们需要分离出来的。

 package aop_demo;

 /*
*
*/
public class Girl1 implements Girl{ private Dog dog = null; public void setDog(Dog dog) {
this.dog = dog;
} public void KFC(String datetime){ System.out.println("[核心业务逻辑]我是第一个女孩");
System.out.println("[核心业务逻辑]"+datetime+"吃肯德基");
} public void meet(String datetime){ System.out.println("[核心业务逻辑]我是第一个女孩");
System.out.println("[核心业务逻辑]"+datetime+"约会"); } @Override
public void playDog() { dog.bark(); } }

本例中的对象还一个dog属性因此我们还一个dog对象以及它的方法

 package aop_demo;

 public class Dog_taidi implements Dog {

     @Override
public void bark() {
System.out.println("旺旺,我是泰迪");
} }

第二步,统一管理我们的非核心业务也就是代理了。

深入理解springAOP

上图中的通知其本质也就是代理,由于本例中前后都有非核心业务,因此我们选择环绕通知

 package aop_demo;

 import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation; public class AroundAdvice implements MethodInterceptor { @Override
public Object invoke(MethodInvocation invocation) throws Throwable { //前置业务
System.out.println("[代理执行前置]洗澡");
System.out.println("[代理执行前置]化妆");
System.out.println("[代理执行前置]穿衣服");
System.out.println("*****************"); //核心业务
Object result = invocation.proceed(); //后置业务
System.out.println("*****************");
System.out.println("[代理执行后置]卸妆");
System.out.println("[代理执行后置]洗澡");
System.out.println("[代理执行后置]听歌");
System.out.println(""); return result;
} }

第三步,配置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:p="http://www.springframework.org/schema/p"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd"> <bean id="girl" class="aop_demo.Girl1" scope="prototype">
<!-- g1.setDog(dog1); -->
<property name="dog" ref="dog1"></property>
</bean> <!-- Dog dog1 = new Dog_taidi(); -->
<bean id="dog1" class="aop_demo.Dog_taidi" scope="prototype"> </bean> <bean id="girlHandler" class="aop_demo.GirlHandler" scope="prototype">
<property name="target" ref="girl"></property>
</bean> <bean id="aroundAdvice" class="aop_demo.AroundAdvice"></bean> <bean id="girlProxy" class="org.springframework.aop.framework.ProxyFactoryBean" scope="prototype">
<property name="interceptorNames" value="aroundAdvice"></property>
<property name="target" ref="girl"></property>
</bean> </beans>

第四步,构造我们的测试程序

 package aop_demo;

 import org.springframework.context.ApplicationContext;
import org.springframework.context.support.FileSystemXmlApplicationContext; public class Test { public static void main(String[] args) { ApplicationContext context = new FileSystemXmlApplicationContext("applicationContext.xml"); Girl g1 = (Girl)context.getBean("girlProxy"); System.out.println("");
System.out.println("");
System.out.println("");
System.out.println(""); g1.KFC("周日");
g1.meet("周六");
//开始遛狗
g1.playDog(); } }