spring02

目录

一、什么是Aop?

 二、Aop的关键名词介绍

三、通过案例讲解

3.1 前置通知

 3.2 后置通知

 3.3环绕通知

 3.4 异常通知

 3.5 过滤通知

一、什么是Aop?

AOP(Aspect Oriented Programming)称为面向切面编程,利用 AOP 可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低提高程序的可重用性,同时提高了开发的效率

 二、Aop的关键名词介绍

连接点(Joinpoint):程序执行过程中明确的点,如方法的调用,或者异常的抛出.

目标(Target):被通知(被代理)的对象

注1:完成具体的业务逻辑

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

注2:完成切面编程

代理(Proxy):将通知应用到目标对象后创建的对象(代理=目标+通知),

             例子:外科医生+护士

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

切入点(Pointcut):多个连接点的集合,定义了通知应该应用到那些连接点。

                 (也将Pointcut理解成一个条件 ,此条件决定了容器在什么情况下将通知和目标组合成代理返回给外部程序)

   

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

三、通过案例讲解

建一个com.cdl.aop.biz的包,里面建一个类

BookBiz 

package com.cdl.aop.biz;

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

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

再建一个com.cdl.aop.biz.impl的包,里面建一个类

BookBizImpl 

package com.cdl.aop.biz.impl;

import com.cdl.aop.biz.BookBiz;
import com.cdl.aop.exception.PriceException;



public class BookBizImpl implements BookBiz {

	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);
	}

}

再建一个com.cdl.aop.exception的包,里面建一个类

PriceException 

package com.cdl.aop.exception;

public class PriceException extends RuntimeException {

	public PriceException() {
		super();
	}

	public PriceException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

	public PriceException(String message, Throwable cause) {
		super(message, cause);
	}

	public PriceException(String message) {
		super(message);
	}

	public PriceException(Throwable cause) {
		super(cause);
	}
	
}

3.1 前置通知

实现org.springframework.aop.MethodBeforeAdvice接口

        买书、评论前加系统日志

 建一个包com.cdl.aop.advice,在里面再建一个类

MyMethodBeforeAdvice

package com.cdl.aop.advice;

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

import org.springframework.aop.MethodBeforeAdvice;
/**
 * 实现org.springframework.aop.MethodBeforeAdvice接口
	买书、评论前加系统日志
 * @author Lenovo
 *
 */
public class MyMethodBeforeAdvice implements MethodBeforeAdvice{

	
	@Override
	public void before(Method arg0, Object[] arg1, Object arg2) throws Throwable {
		//目标对象的类名
		String clzName = arg2.getClass().getName();
		//当前调用的方法是
		String methodName = arg0.getName();
		//当前调用方法所传递的参数
		String args = Arrays.toString(arg1);
		System.out.println("[系统日志:]"+clzName+"."+methodName+"被调用,传递的参数为:"+args);
		
	}
	
	
	
	
}

spring-context.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"
	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/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

	<!-- IOC的主要作用管理整个项目的Javabean:依靠依赖注入、控制反转的特点进行管理 -->
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz"></bean>
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz1"></bean>
	<!--set注入  -->
	<bean class="com.cdl.web.UserAction" id="userAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<property name="age" value="22"></property>
		<property name="name" value="cdl"></property>
		<property name="hobby">
			<list>
				<value>篮球</value>
				<value>足球</value>
				<value>唱歌</value>
			</list>
		</property>
	</bean>
	
	<!-- 构造注入 -->
	<bean class="com.cdl.web.OrderAction" id="orderAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<constructor-arg name="name" value="cdl"></constructor-arg>
		<constructor-arg name="age" value="23"></constructor-arg>
		<constructor-arg name="hobby">
				<list>
				<value>篮球1</value>
				<value>足球1</value>
				<value>唱歌1</value>
				</list>
		</constructor-arg>
	</bean>
	
	<!-- 目标对象 -->
	<bean class="com.cdl.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>
	<!--前置通知  -->
	<bean class="com.cdl.aop.advice.MyMethodBeforeAdvice" id="myBefore"></bean>
	<!-- 代理对象=目标+通知 -->
	<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
		<!--目标-->
		<property name="target" ref="bookBiz"></property>
		<!--目标所实现的接口列表-->
		<property name="proxyInterfaces">
			<list>
				<value>com.cdl.aop.biz.BookBiz</value>
			</list>
		</property>
		<!--通知:正式调用目标方法的时候,会调用指定的通知-->
		<property name="interceptorNames">
			<list>
				<value>myBefore</value>
			</list>
		</property>
	</bean>
	


</beans>

新建一个com.cdl.aop.test包 建一个Demo1的类

package com.cdl.aop.test;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.cdl.aop.biz.BookBiz;

public class Demo1 {
	@SuppressWarnings("resource")
	public static void main(String[] args) {
		ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/spring-context.xml");
		BookBiz bean = (BookBiz) context.getBean("bookBiz");
		bean.buy("陈冬丽", "哈利波特", 20.7d);
		bean.comment("陈冬丽", "真好看");
		
	}
	
	
	
}

结果:

   实现买书、评论前加系统日志

package com.cdl.aop.test;

import org.springframework.context.support.ClassPathXmlApplicationContext;

import com.cdl.aop.biz.BookBiz;

public class Demo1 {
	@SuppressWarnings("resource")
	public static void main(String[] args) {
		ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/spring-context.xml");
		//BookBiz bean = (BookBiz) context.getBean("bookBiz");
		BookBiz bean = (BookBiz) context.getBean("bookProxy");
		bean.buy("陈冬丽", "哈利波特", 20.7d);
		bean.comment("陈冬丽", "真好看");
		
	}
	
	
	
}

 3.2 后置通知

实现org.springframework.aop.AfterReturningAdvice接口

        买书返利

 MyAfterReturningAdvice

package com.cdl.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 returnValue, Method method, Object[] args, Object target) throws Throwable {
		//目标对象的类名
		String clzName = target.getClass().getName();
		//当前调用的方法是
		String methodName = method.getName();
		//当前调用方法所传递的参数
		String arg = Arrays.toString(args);
		System.out.println("[买书返利系统日志:]"+clzName+"."+methodName+"被调用,传递的参数为:"+args+"目标对象方法返回值为:"+returnValue);
	}
	
}
<?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"
	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/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

	<!-- IOC的主要作用管理整个项目的Javabean:依靠依赖注入、控制反转的特点进行管理 -->
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz"></bean>
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz1"></bean>
	<!--set注入  -->
	<bean class="com.cdl.web.UserAction" id="userAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<property name="age" value="22"></property>
		<property name="name" value="cdl"></property>
		<property name="hobby">
			<list>
				<value>篮球</value>
				<value>足球</value>
				<value>唱歌</value>
			</list>
		</property>
	</bean>
	
	<!-- 构造注入 -->
	<bean class="com.cdl.web.OrderAction" id="orderAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<constructor-arg name="name" value="cdl"></constructor-arg>
		<constructor-arg name="age" value="23"></constructor-arg>
		<constructor-arg name="hobby">
				<list>
				<value>篮球1</value>
				<value>足球1</value>
				<value>唱歌1</value>
				</list>
		</constructor-arg>
	</bean>
	
	<!-- 目标对象 -->
	<bean class="com.cdl.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>
	<!--前置通知  -->
	<bean class="com.cdl.aop.advice.MyMethodBeforeAdvice" id="myBefore"></bean>
	<!--  后置通知-->
	<bean class="com.cdl.aop.advice.MyAfterReturningAdvice" id="myAfter"></bean>
	<!-- 代理对象=目标+通知 -->
	<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
		<!--目标-->
		<property name="target" ref="bookBiz"></property>
		<!--目标所实现的接口列表-->
		<property name="proxyInterfaces">
			<list>
				<value>com.cdl.aop.biz.BookBiz</value>
			</list>
		</property>
		<!--通知:正式调用目标方法的时候,会调用指定的通知-->
		<property name="interceptorNames">
			<list>
				<value>myBefore</value>
				<value>myAfter</value>
			</list>
		</property>
	</bean>
	


</beans>

Demo1不变

 3.3环绕通知

org.aopalliance.intercept.MethodInterceptor

        类似拦截器,会包括切入点,目标类前后都会执行代码。

 

package com.cdl.aop.advice;

import java.util.Arrays;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
/**
 * 环绕通知=前置通知+后置通知
 * @author Lenovo
 *
 */
public class MyMethodInterceptor implements MethodInterceptor{

	@Override
	public Object invoke(MethodInvocation invocation) throws Throwable {
		//目标对象的类名
		String clzName = invocation.getThis().getClass().getName();
		//当前调用的方法是
		String methodName = invocation.getMethod().getName();
		//当前调用方法所传递的参数
		String args = Arrays.toString(invocation.getArguments());
		//方法的返回值 执行目标方法 BookBiz
		Object rs = invocation.proceed();
		System.out.println("[环绕通知:]"+clzName+"."+methodName+"被调用,传递的参数为:"+rs);
		return rs;
	}
	
}
<?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"
	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/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

	<!-- IOC的主要作用管理整个项目的Javabean:依靠依赖注入、控制反转的特点进行管理 -->
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz"></bean>
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz1"></bean>
	<!--set注入  -->
	<bean class="com.cdl.web.UserAction" id="userAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<property name="age" value="22"></property>
		<property name="name" value="cdl"></property>
		<property name="hobby">
			<list>
				<value>篮球</value>
				<value>足球</value>
				<value>唱歌</value>
			</list>
		</property>
	</bean>
	
	<!-- 构造注入 -->
	<bean class="com.cdl.web.OrderAction" id="orderAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<constructor-arg name="name" value="cdl"></constructor-arg>
		<constructor-arg name="age" value="23"></constructor-arg>
		<constructor-arg name="hobby">
				<list>
				<value>篮球1</value>
				<value>足球1</value>
				<value>唱歌1</value>
				</list>
		</constructor-arg>
	</bean>
	
	<!-- 目标对象 -->
	<bean class="com.cdl.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>
	<!--前置通知  -->
	<bean class="com.cdl.aop.advice.MyMethodBeforeAdvice" id="myBefore"></bean>
	<!--  后置通知-->
	<bean class="com.cdl.aop.advice.MyAfterReturningAdvice" id="myAfter"></bean>
	<!--环绕通知  -->
	<bean class="com.cdl.aop.advice.MyMethodInterceptor" id="myMethod"></bean>
	<!-- 代理对象=目标+通知 -->
	<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
		<!--目标-->
		<property name="target" ref="bookBiz"></property>
		<!--目标所实现的接口列表-->
		<property name="proxyInterfaces">
			<list>
				<value>com.cdl.aop.biz.BookBiz</value>
			</list>
		</property>
		<!--通知:正式调用目标方法的时候,会调用指定的通知-->
		<property name="interceptorNames">
			<list>
				<value>myBefore</value>
				<value>myAfter</value>
				<value>myMethod</value>
			</list>
		</property>
	</bean>
	


</beans>

 3.4 异常通知

org.springframework.aop.ThrowsAdvice

        出现异常执行系统提示,然后进行处理。价格异常为例

 MyThrowsAdvice 

package com.cdl.aop.advice;

import org.springframework.aop.ThrowsAdvice;

import com.cdl.aop.exception.PriceException;

/**
 * 关于异常通知
 *  相较于前置通知、后置通知、环绕通知有一个非常大的区别
 *  前面三大通知都需要实现其中的方法
 *  异常通知不需要,但是,它的方法名是固定的
 * @author Lenovo
 *
 */
public class MyThrowsAdvice implements ThrowsAdvice{
	
	public void afterThrowing(PriceException ex) {
		System.out.println("【异常通知】:当价格发生异常,那么执行此处代码块!!!");
	}
	
}
<?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"
	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/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

	<!-- IOC的主要作用管理整个项目的Javabean:依靠依赖注入、控制反转的特点进行管理 -->
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz"></bean>
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz1"></bean>
	<!--set注入  -->
	<bean class="com.cdl.web.UserAction" id="userAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<property name="age" value="22"></property>
		<property name="name" value="cdl"></property>
		<property name="hobby">
			<list>
				<value>篮球</value>
				<value>足球</value>
				<value>唱歌</value>
			</list>
		</property>
	</bean>
	
	<!-- 构造注入 -->
	<bean class="com.cdl.web.OrderAction" id="orderAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<constructor-arg name="name" value="cdl"></constructor-arg>
		<constructor-arg name="age" value="23"></constructor-arg>
		<constructor-arg name="hobby">
				<list>
				<value>篮球1</value>
				<value>足球1</value>
				<value>唱歌1</value>
				</list>
		</constructor-arg>
	</bean>
	
	<!-- 目标对象 -->
	<bean class="com.cdl.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>
	<!--前置通知  -->
	<bean class="com.cdl.aop.advice.MyMethodBeforeAdvice" id="myBefore"></bean>
	<!--  后置通知-->
	<bean class="com.cdl.aop.advice.MyAfterReturningAdvice" id="myAfter"></bean>
	<!--环绕通知  -->
	<bean class="com.cdl.aop.advice.MyMethodInterceptor" id="myMethod"></bean>
	<!-- 异常通知 -->
	<bean class="com.cdl.aop.advice.MyThrowsAdvice" id="myThrows"></bean>
	<!-- 代理对象=目标+通知 -->
	<bean class="org.springframework.aop.framework.ProxyFactoryBean" id="bookProxy">
		<!--目标-->
		<property name="target" ref="bookBiz"></property>
		<!--目标所实现的接口列表-->
		<property name="proxyInterfaces">
			<list>
				<value>com.cdl.aop.biz.BookBiz</value>
			</list>
		</property>
		<!--通知:正式调用目标方法的时候,会调用指定的通知-->
		<property name="interceptorNames">
			<list>
				<value>myBefore</value>
				<value>myAfter</value>
				<value>myMethod</value>
				<value>myThrows</value>
			</list>
		</property>
	</bean>
	


</beans>

将价格改成负数

 3.5 过滤通知

org.springframework.aop.support.RegexpMethodPointcutAdvisor

        处理买书返利的bug

 

<?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"
	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/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd">

	<!-- IOC的主要作用管理整个项目的Javabean:依靠依赖注入、控制反转的特点进行管理 -->
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz"></bean>
	<bean class="com.cdl.biz.impl.UserBizImpl1" id="userBiz1"></bean>
	<!--set注入  -->
	<bean class="com.cdl.web.UserAction" id="userAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<property name="age" value="22"></property>
		<property name="name" value="cdl"></property>
		<property name="hobby">
			<list>
				<value>篮球</value>
				<value>足球</value>
				<value>唱歌</value>
			</list>
		</property>
	</bean>
	
	<!-- 构造注入 -->
	<bean class="com.cdl.web.OrderAction" id="orderAction">
		<property name="userBiz" ref="userBiz1"></property> 
		<constructor-arg name="name" value="cdl"></constructor-arg>
		<constructor-arg name="age" value="23"></constructor-arg>
		<constructor-arg name="hobby">
				<list>
				<value>篮球1</value>
				<value>足球1</value>
				<value>唱歌1</value>
				</list>
		</constructor-arg>
	</bean>
	
	<!-- 目标对象 -->
	<bean class="com.cdl.aop.biz.impl.BookBizImpl" id="bookBiz"></bean>
	<!--前置通知  -->
	<bean class="com.cdl.aop.advice.MyMethodBeforeAdvice" id="myBefore"></bean>
	<!--  后置通知-->
	<bean class="com.cdl.aop.advice.MyAfterReturningAdvice" id="myAfter"></bean>
	<!--环绕通知  -->
	<bean class="com.cdl.aop.advice.MyMethodInterceptor" id="myMethod"></bean>
	<!-- 异常通知 -->
	<bean class="com.cdl.aop.advice.MyThrowsAdvice" id="myThrows"></bean>
	<!--过滤通知 :给后置通知添加一个过滤功能 :只有买书返利 评论不返利 -->
	<bean class="org.springframework.aop.support.RegexpMethodPointcutAdvisor" id="myafterPlus">
		<property name="advice" ref="myAfter"></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.cdl.aop.biz.BookBiz</value>
			</list>
		</property>
		<!--通知:正式调用目标方法的时候,会调用指定的通知-->
		<property name="interceptorNames">
			<list>
				<value>myBefore</value>
				<!-- <value>myAfter</value> -->
				<value>myMethod</value>
				<value>myThrows</value>
				<value>myafterPlus</value>
			</list>
		</property>
	</bean>
	


</beans>

注意:将负数改回来

结果

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值