spring之AOP

aop的简介

解决的问题:解决了需求的改变,造成了原有没必要改变的代码,需要去改变它;
比如:书籍的增删改,本身只需要完成增删改的功能即可,这是如果需要添加日志功能,那么需要在原有的代码基础上,去修改添加日志功能,受牵连的方法就三个(add/edit/del)了;
AOP中关键性概念
连接点(Joinpoint):程序执行过程中明确的点,如方法的调用,或者异常的抛出.

目标(Target):被通知(被代理)的对象
注1:完成具体的业务逻辑

通知(Advice):在某个特定的连接点上执行的动作,同时Advice也是程序代码的具体实现,例如一个实现日志记录的代码(通知有些书上也称为处理)
注2:完成切面编程

代理(Proxy):将通知应用到目标对象后创建的对象(代理=目标+通知),
例子:外科医生+护士

注3:只有代理对象才有AOP功能,而AOP的代码是写在通知的方法里面的

切入点(Pointcut):多个连接点的集合,定义了通知应该应用到那些连接点。
(也将Pointcut理解成一个条件 ,此条件决定了容器在什么情况下将通知和目标组合成代理返回给外部程序)

适配器(Advisor):适配器=通知(Advice)+切入点(Pointcut)

案例
前置通知
实现org.springframework.aop.MethodBeforeAdvice接口
买书、评论前加系统日志

后置通知
实现org.springframework.aop.AfterReturningAdvice接口
买书返利(存在bug)

环绕通知
org.aopalliance.intercept.MethodInterceptor
类似拦截器,会包括切入点,目标类前后都会执行代码。

异常通知
org.springframework.aop.ThrowsAdvice
出现异常执行系统提示,然后进行处理。价格异常为例

过滤通知(适配器)
org.springframework.aop.support.RegexpMethodPointcutAdvisor
处理买书返利的bug

前置通知
BookBizImpl

package com.yq.aop.biz.impl;

import com.yq.aop.biz.IBookBiz;
import com.yq.aop.exception.PriceException;

public class BookBizImpl implements IBookBiz {

	public BookBizImpl() {
		super();
	}

	public boolean buy(String userName, String bookName, Double price) {
		// 通过控制台的输出方式模拟购书
		if (null == price || price <= 0) {
			throw new PriceException("book price exception");
		}
		System.out.println(userName + " buy " + bookName + ", spend " + price);
		return true;
	}

	public void comment(String userName, String comments) {
		// 通过控制台的输出方式模拟发表书评
		System.out.println(userName + " say:" + comments);
	}

}

在这里插入代码片

IBookBiz

package com.yq.aop.biz;

public interface IBookBiz {
	// 购书
	public boolean buy(String userName, String bookName, Double price);

	// 发表书评
	public void comment(String userName, String comments);
}

在这里插入代码片

MyMethodBeforeAdvice

package com.yq.aop.advice;

import java.lang.reflect.Method;
import java.util.Arrays;

import org.springframework.aop.MethodBeforeAdvice;

/**
 * 买书,评论前加系统日志
 * @author 陌陌
 *
 */
public class MyMethodBeforeAdvice implements MethodBeforeAdvice {

	@Override
	public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
//		在这里,可以获取到目标类的全路径名及方法参数,然后就可以将他们写到日志里面去
		String target = arg2.getClass().getName();
		String methodName = arg0.getName();
		String args = Arrays.toString(arg1);
		System.out.println("[前置通知:系统日志],"+target+"."+methodName+"("+args+")被调用了");
	}

}

在这里插入代码片

配置spring-context.xml

<!--.......aop的讲解。。。。。  -->
<!-- 目标 -->	
<bean class="com.yq.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>	
<!-- 前置通知 -->	
<bean class="com.yq.aop.advice.MyMethodBeforeAdvice" id="myMethodBeforeAdvice"></bean>

<!-- 利用目标+通知生成代理对象 -->	
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz"></property>
<property name="proxyInterfaces">
<list>
<value>com.yq.aop.biz.IBookBiz</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>myMethodBeforeAdvice</value>
</list>
</property>
</bean>
在这里插入代码片

AopTest

package com.yq.aop.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.yq.aop.biz.IBookBiz;

public class AopTest {
@SuppressWarnings("resource")
public static void main(String[] args) {
	ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/spring-context.xml");
//	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookBiz");
	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookProxy");
	bean.buy("张三", "java编程思想", 19.9);
	bean.comment("张三", "太难了,看不懂");
}
}

在这里插入代码片

在这里插入图片描述
后置通知
MyAfterReturningAdvice

package com.yq.aop.advice;

import java.lang.reflect.Method;
import java.util.Arrays;

/**
 * 买书返利
 */
import org.springframework.aop.AfterReturningAdvice;

public class MyAfterReturningAdvice implements AfterReturningAdvice {

	@Override
	public void afterReturning(Object arg0, Method arg1, Object[] arg2, Object arg3) throws Throwable {
		String target = arg3.getClass().getName();
		String methodName = arg1.getName();
		String args = Arrays.toString(arg2);
		System.out.println("[后置通知:买书返利],"+target+"."+methodName+"("+args+")被调用了."+"该方法被调用后的返回值为:"+arg0);
		
	}

}

在这里插入代码片

配置spring-context.xml

<!--.......aop的讲解。。。。。  -->
<!-- 目标 -->	
<bean class="com.yq.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>	
<!-- 前置通知 -->	
<bean class="com.yq.aop.advice.MyMethodBeforeAdvice" id="myMethodBeforeAdvice"></bean>
<!-- 后置通知 -->
<bean class="com.yq.aop.advice.MyAfterReturningAdvice" id="myAfterReturningAdvice"></bean>

<!-- 利用目标+通知生成代理对象 -->	
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz"></property>
<property name="proxyInterfaces">
<list>
<value>com.yq.aop.biz.IBookBiz</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>myMethodBeforeAdvice</value>
<value>myAfterReturningAdvice</value>
</list>
</property>
</bean>
在这里插入代码片

AopTest

package com.yq.aop.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.yq.aop.biz.IBookBiz;

public class AopTest {
@SuppressWarnings("resource")
public static void main(String[] args) {
	ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/spring-context.xml");
//	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookBiz");
	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookProxy");
	bean.buy("张三", "java编程思想", 19.9);
	bean.comment("张三", "太难了,看不懂");
}
}

在这里插入代码片

在这里插入图片描述
环绕通知
MyMethodInterceptor

package com.yq.aop.advice;

import java.util.Arrays;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
/**
 * 环绕通知
 * 包含了前置和后置通知
 * @author 陌陌
 *
 */
public class MyMethodInterceptor implements MethodInterceptor {

	@Override
	public Object invoke(MethodInvocation arg0) throws Throwable {
		String target = arg0.getThis().getClass().getName();
		String methodName = arg0.getMethod().getName();
		String args = Arrays.toString(arg0.getArguments());
		System.out.println("[环绕通知调用前:],"+target+"."+methodName+"("+args+")被调用了."+"该方法被调用后的返回值为:"+arg0);
//		arg0.proceed()就是目标对象的方法
		Object proceed = arg0.proceed();
		System.out.println("[环绕通知调用后:],该方法被调用后的返回值为:"+proceed);
		return proceed;
	}

}

在这里插入代码片

配置spring-context.xml

<!--.......aop的讲解。。。。。  -->
<!-- 目标 -->	
<bean class="com.yq.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>	
<!-- 前置通知 -->	
<bean class="com.yq.aop.advice.MyMethodBeforeAdvice" id="myMethodBeforeAdvice"></bean>
<!-- 后置通知 -->
<bean class="com.yq.aop.advice.MyAfterReturningAdvice" id="myAfterReturningAdvice"></bean>
<!-- 环绕通知 -->
<bean class="com.yq.aop.advice.MyMethodInterceptor" id="myMethodInterceptor"></bean>

<!-- 利用目标+通知生成代理对象 -->	
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz"></property>
<property name="proxyInterfaces">
<list>
<value>com.yq.aop.biz.IBookBiz</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>myMethodBeforeAdvice</value>
<value>myAfterReturningAdvice</value>
<value>myMethodInterceptor</value>
</list>
</property>
</bean>
在这里插入代码片

AopTest

package com.yq.aop.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.yq.aop.biz.IBookBiz;

public class AopTest {
@SuppressWarnings("resource")
public static void main(String[] args) {
	ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/spring-context.xml");
//	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookBiz");
	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookProxy");
	bean.buy("张三", "java编程思想", 19.9);
	System.out.println("---------------");
	bean.comment("张三", "太难了,看不懂");
}
}

在这里插入代码片

在这里插入图片描述
异常通知
MyThrowsAdvice

package com.yq.aop.advice;

import org.springframework.aop.ThrowsAdvice;

import com.yq.aop.exception.PriceException;
/**
 * 出现异常执行系统提示,然后进行处理,价格异常为例
 * @author 陌陌
 *
 */
public class MyThrowsAdvice implements ThrowsAdvice {
public void afterThrowing(PriceException ex) {
	System.out.println("[异常通知],当价格方式异常,那么执行此处代码块!!!!!");
}
}

在这里插入代码片

配置spring-context.xml

<!--.......aop的讲解。。。。。  -->
<!-- 目标 -->	
<bean class="com.yq.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>	
<!-- 前置通知 -->	
<bean class="com.yq.aop.advice.MyMethodBeforeAdvice" id="myMethodBeforeAdvice"></bean>
<!-- 后置通知 -->
<bean class="com.yq.aop.advice.MyAfterReturningAdvice" id="myAfterReturningAdvice"></bean>
<!-- 环绕通知 -->
<bean class="com.yq.aop.advice.MyMethodInterceptor" id="myMethodInterceptor"></bean>
<!-- 异常通知 -->
<bean class="com.yq.aop.advice.MyThrowsAdvice" id="myThrowsAdvice"></bean>

<!-- 利用目标+通知生成代理对象 -->	
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz"></property>
<property name="proxyInterfaces">
<list>
<value>com.yq.aop.biz.IBookBiz</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>myMethodBeforeAdvice</value>
<value>myAfterReturningAdvice</value>
<value>myMethodInterceptor</value>
<value>myThrowsAdvice</value>
</list>
</property>
</bean>
在这里插入代码片

AopTest

package com.yq.aop.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.yq.aop.biz.IBookBiz;

public class AopTest {
@SuppressWarnings("resource")
public static void main(String[] args) {
	ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/spring-context.xml");
//	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookBiz");
	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookProxy");
	bean.buy("张三", "java编程思想", -19.9);
	System.out.println("---------------");
	bean.comment("张三", "太难了,看不懂");
}
}

在这里插入代码片

在这里插入图片描述
过滤通知
配置spring-context.xml

<!--.......aop的讲解。。。。。  -->
<!-- 目标 -->	
<bean class="com.yq.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>	
<!-- 前置通知 -->	
<bean class="com.yq.aop.advice.MyMethodBeforeAdvice" id="myMethodBeforeAdvice"></bean>
<!-- 后置通知 -->
<bean class="com.yq.aop.advice.MyAfterReturningAdvice" id="myAfterReturningAdvice"></bean>
<!-- 环绕通知 -->
<bean class="com.yq.aop.advice.MyMethodInterceptor" id="myMethodInterceptor"></bean>
<!-- 异常通知 -->
<bean class="com.yq.aop.advice.MyThrowsAdvice" id="myThrowsAdvice"></bean>
<!-- 过滤通知 -->
<bean class="org.springframework.aop.support.RegexpMethodPointcutAdvisor" id="myAfterReturningAdvicePlus">
<property name="advice" ref="myAfterReturningAdvice"></property>
<property name="pattern" value=".*buy"></property>
</bean>

<!-- 利用目标+通知生成代理对象 -->	
<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
<property name="target" ref="bookBiz"></property>
<property name="proxyInterfaces">
<list>
<value>com.yq.aop.biz.IBookBiz</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>myMethodBeforeAdvice</value>
<!-- <value>myAfterReturningAdvice</value> -->
<value>myAfterReturningAdvicePlus</value>
<value>myMethodInterceptor</value>
<value>myThrowsAdvice</value>

</list>
</property>
</bean>
在这里插入代码片

AopTest

package com.yq.aop.test;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.yq.aop.biz.IBookBiz;

public class AopTest {
@SuppressWarnings("resource")
public static void main(String[] args) {
	ApplicationContext applicationContext=new ClassPathXmlApplicationContext("/spring-context.xml");
//	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookBiz");
	IBookBiz bean= (IBookBiz) applicationContext.getBean("bookProxy");
	bean.buy("张三", "java编程思想", 19.9);
	System.out.println("---------------");
	bean.comment("张三", "太难了,看不懂");
}
}

在这里插入代码片

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值