【Spring实战】----解析Spring AOP

123 篇文章 0 订阅
27 篇文章 3 订阅

上篇文章说要解析下Spring的事务管理,再说Spring的事务管理之前,先说下AOP,因为Spring的声明式事务管理是基于AOP的。

一、什么是AOP

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

二、AOP术语

遗憾的是,大多数用于描述AOP功能的术语不太直观,但是它们已经是AOP的组成部分了,我们必须了解它们,为了理解AOP。

1)通知(Advice)

切面的工作称为通知,通知除了描述切面要完成的工作,还解决了何时执行这个工作的问题,它应该应用于某个方法被调用之前?之后?之前和之后?还是只有方法抛出异常时?

Spring切面可以应用5种类型的通知:

  • Before:在方法被调用之前调用通知
  • After:在方法调用之后,调用通知,无论方法是否执行成功
  • After-returning:在方法成功调用之后调用通知
  • After-throwing:在方法抛出异常后调用通知
  • Around:通知包裹了被通知的方法,在被通知的方法调用之前和调用通知
2)连接点(Joinpoint)

连接点是在应用执行过程中能够插入切面的一个点,这个点可以是调用方法时、抛出异常时、甚至是修改一个字段时。

3)切点(Pointcut)

如果说通知定义切面的“什么”和“何时”,那么切点就定义了“何处”。切点的定义会匹配通知所要织入的一个或多个连接点。我们通常会使用明确的类和方法名称来指定这些切点,或是利用正则表达式定义匹配的类和方法名称模式来指定这些切点。

4)切面(Aspect)

切面是通知和切点的结合,通知和切点共同定义了关于切面的全部内容----它是什么,在何时和何处完成其功能

5)引入(Introduction)

引入允许我们为现有的类添加新方法或属性

6)织入(Weaving)

织入是将切面应用到目标对象来创建新的代理对象的过程。切面在指定的连接点被织入到目标对象中,在目标对象的生命周期里有多个点可以进行织入:

  • 编译期:切面在目标类编译时被织入,需要特殊的编译器,例如AspectJ
  • 类加载期:切面在目标类被加载到JVM时被织入,需要特殊的加载器AspectJ 5的LTW
  • 运行期:切面在应用运行的某个时刻被织入,一般情况下,在织入切面时,AOP容器会为目标对象动态地创建一个代理对象,Spring AOP就是以这种方式织入切面的。

三、切面配置

从上面概念可知,AOP最关键的就是切面的配置,其中Spring AOP的配置有如下几种:

  • 基于代理的经典AOP
  • @AspectJ注解驱动的切面
  • 纯POJO切面
  • 注入式AspectJ切面(适合Spring各版本)

前三种都是Spring基于代理的AOP变体,因此Spring对AOP的支持局限于方法拦截。如果超过了方法级(比如构造器或属性拦截),那么应该考虑注入式AspectJ切面。

常用的切面配置有两种:XML配置及基于@AspectJ注解的配置,下面对基于@AspectJ在该项目中的应用进行说明,XML中的配置及更多AOP相关可参考《Spring in action》。

1)配置<aop:aspectj-autoproxy>启用@AspectJ注解,还是常用的xml配置,当然可以用java配置

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

	<!-- 启用@AspectJ注解驱动的切面 -->
	<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
	
	
</beans>


2)切面类
/**
 * 
 */
package com.mango.jtt.springAspect;

import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.springframework.stereotype.Component;

import com.mango.jtt.po.Order;
import com.mango.jtt.util.LogUtil;

/**
 * @author HHL
 *
 * @date 2016年10月25日
 */
@Component
@Aspect
public class LogAspect {

	@AfterReturning("execution(* com.mango.jtt.springTask.TaskJob.job1(..))")
	public void logTaskJob() {
		LogUtil.printInfoLog(getClass(), "任务进行中ing......");
	}
	
	@AfterReturning(pointcut = "execution(* com.mango.jtt.service.OrderService.saveOrder(..)) && args(order)")
	public void saveOrder(Order order) {
		LogUtil.printInfoLog(getClass(), "保存订单,订单号为:" + order.getOrderId());
	}

}

当然切面类也是普通类,需要加到Spring容器中,采用@Component注解加入到其中。

@Aspect注解表明该类为切面类,其后的方法上注解,表明了连接点和通知,通知的类型在术语中已经说过有5种,分别对应的注解为@Before,@After,@AfterReturning,@AfterThrowing,@Around。


3)展示下用xml配置的aop

applicationContext-aspect.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" 
	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.xsd" >
	<!-- 基于xml的aop配置 -->
	<bean id="xmlAspect" class="com.mango.jtt.springAspect.XmlAspect"></bean>
	<aop:config>
		<aop:aspect ref="xmlAspect">
			<aop:pointcut expression="execution(* com.mango.jtt.service.ProductServiceImpl.getProductById(..))" 
						  id="getProductById"/>
			<aop:before method="beforeGet" pointcut-ref="getProductById"/>
			<aop:after method="afterGet" pointcut-ref="getProductById"/>
			<aop:around method="aroundGet" pointcut-ref="getProductById"/>
			<aop:after-returning method="afterReturningGet"
								 pointcut="execution(* com.mango.jtt.service.ProductServiceImpl.getProductById(String)) 
					                       and args(productId)"
								 arg-names="productId"/>
		</aop:aspect>
	</aop:config>
	
	<!-- 基于@AspectJ注解的aop配置 @see com.mango.jtt.springAspect.LogAspect -->
	<!-- 启用@AspectJ注解驱动的切面 -->
	<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
	
	
</beans>
4) aspect类
/**
 * 
 */
package com.mango.jtt.springAspect;

import org.aspectj.lang.ProceedingJoinPoint;

import com.mango.jtt.util.LogUtil;

/**
 * 基于xml的aop配置
 * 
 * @author HHL
 * 
 * @date 2016年12月6日
 */
public class XmlAspect {
	public void beforeGet() {
		LogUtil.printInfoLog(getClass(), "beforeGet");
	}

	public void afterGet() {
		LogUtil.printInfoLog(getClass(), "afterGet");
	}

	public Object aroundGet(ProceedingJoinPoint joinPoint) {
		LogUtil.printInfoLog(getClass(), "beforeGet--around");
		Object obj = null;
		try {
			obj = joinPoint.proceed();
		} catch (Throwable e) {
			e.printStackTrace();
		}
		LogUtil.printInfoLog(getClass(), "afterGet--around");
		return obj;
	}

	public void afterReturningGet(String productId) {
		LogUtil.printInfoLog(getClass(), "afterReturningGet----productId:"
				+ productId);
	}
}


而且使用环绕通知时,需注意,要调用proceed方法,才能执行被通知的方法,并且如果被通知的方法有返回值的话,也需要将proceed的方法的返回值返回,否则controller无法收到service的返回值。


5)执行结果:可以看出执行顺序
2016-12-06 09:25:55.757 [http-apr-9080-exec-13] INFO  com.mango.jtt.util.LogUtil.printInfoLog(LogUtil.java:31) beforeGet
2016-12-06 09:25:55.757 [http-apr-9080-exec-13] INFO  com.mango.jtt.util.LogUtil.printInfoLog(LogUtil.java:31) beforeGet--around
Hibernate: 
    select
        product0_.productId as productI1_1_0_,
        product0_.picture as picture2_1_0_,
        product0_.productName as productN3_1_0_,
        product0_.quantity as quantity4_1_0_,
        product0_.unit as unit5_1_0_,
        product0_.unitPrice as unitPric6_1_0_ 
    from
        product product0_ 
    where
        product0_.productId=?
2016-12-06 09:25:55.782 [http-apr-9080-exec-13] INFO  com.mango.jtt.util.LogUtil.printInfoLog(LogUtil.java:31) afterReturningGet----productId:123456
2016-12-06 09:25:55.782 [http-apr-9080-exec-13] INFO  com.mango.jtt.util.LogUtil.printInfoLog(LogUtil.java:31) afterGet--around
2016-12-06 09:25:55.783 [http-apr-9080-exec-13] INFO  com.mango.jtt.util.LogUtil.printInfoLog(LogUtil.java:31) afterGet
 
6)切点配置说明

 
7)切面优先级就,数字越小,优先级越高
当有多个切面时,可以用Spring中的Ordered接口或者@Order注解定义优先级
public class XmlAspect implements Ordered {

	/*
	 * 配置该切面的的优先级
	 */
	@Override
	public int getOrder() {
		return 0;
	}
}
 
@org.springframework.core.annotation.Order(1)
public class LogAspect {


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值