`
cyz001
  • 浏览: 43870 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

spring recipes笔记 - 使用经典的spring通知来模块化横切关注点

阅读更多
虽然动态代理在模块化横切关注点方面很有帮助,但编写如此低层次代码对应用开发者来说太过苛刻。

Aop为应用程序开发者定义了一组高层次的概念,用于表达横切关注点。
经典的spring aop支持4种类型的通知:

1前置通知
2返回通知
3异常通知
4环绕通知


前置通知在方法执行之前执行,可以通过实现MethodBeforeAdvice接口创建它
public class LoggingBeforeAdvice implements MethodBeforeAdvice{
	private Log log = LogFactory.getLog(this.getClass());
	
	public void before(Method method, Object[] arg1, Object target)
			throws Throwable {
		log.info("the method "+method.getName()+"() start");
	}
}

接下来,为每个计算器Bean创建一个代理以应用该通知,在spring aop里,代理的创建是通过一个叫ProxyFactryBean的工厂bean完成

<bean id="loggingBeforeAdvice" class="com.netease.z3.LoggingBeforeAdvice"></bean>

<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingBeforeAdvice</value>
		</list>
		</property>
	</bean>

ProxyFactoryBean只为实现了任意接口的目标bean创建jdk代理。如果目标bean没有实现任何接口,那么ProxyFactoryBean将创建CGLIB代理。
在Main类里,应用从IOC容器获取应用了日志代理通知的代理Bean
public static void main(String[] args) {
		ApplicationContext context = new ClassPathXmlApplicationContext("z3.xml");
		Compute compute = (Compute)context.getBean("computeProxy");
		compute.add(10,10);
	}


返回通知在方法执行后记录方法的结束和返回的结果,可以通过实现AfterReturningAdvice接口创建它

public class LoggingAfterAdvice implements AfterReturningAdvice{
	private Log log = LogFactory.getLog(this.getClass());

	public void afterReturning(Object returnValue, Method method, Object[] arg,
			Object target) throws Throwable {
		// TODO Auto-generated method stub
		log.info("the method "+method.getName()+" end "+returnValue);
	}
}


要使这个通知生效,需要在IOC容器里声明一个它的实例,然后在interceptorNames属性里面增加一项对它的引用

<bean id="loggingAfterAdvice" class="com.netease.z3.LoggingAfterAdvice"></bean>
	<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingBeforeAdvice</value>
				<value>loggingAfterAdvice</value>
			</list>
		</property>
	</bean>


第三种通知是异常通知,要能够产生异常,要为算术计算器增加一个检查,有异常时,将抛出Exception
public class ComputeImpl implements Compute {
	private Log log = LogFactory.getLog(this.getClass());
	/* (non-Javadoc)
	 * @see com.netease.dao.Compute#add(double, double)
	 */
	public void div(double a,double b){
		if(b==0){
			throw new IllegalArgumentException("by zero");
		}
	}
}


对于异常通知类型,必须实现ThrowsAdvice接口,每个处理方法的程序必须是afterThrowing.异常的类型由方法的参数类型指定。

public class LoggingThrowsAdvice implements ThrowsAdvice{
	private Log log = LogFactory.getLog(this.getClass());
	public void afterThrowing(IllegalArgumentException e)throws Throwable{
		log.info("Illegal argument");
	}
}


在ioc容器声明一个该通知的实例,然后在interceptorNames属性增加一项对它的引用

<bean id="loggingThrowsAdvice" class="com.netease.z3.LoggingThrowsAdvice"></bean>
	<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingBeforeAdvice</value>
				<value>loggingAfterAdvice</value>
				<value>loggingThrowsAdvice</value>
			</list>
		</property>
	</bean>



环绕通知,在所有通知类型中,它是最强大的,因为它能完全控制方法的执行过程,所以可以把前面所有通知动作合并到一个单独的通知里面。

环绕通知必须实现MethodIntercepor接口,如果要继续执行原始方法那么必须调用methodInvocation.proceed(),如果忘记这步,原始的方法是不会被调用,下面环绕通知合并了前面的前置,后置,异常通知.

public class LoggingAroundAdvice implements MethodInterceptor {
	private Log log = LogFactory.getLog(this.getClass());
	public Object invoke(MethodInvocation methodInvocation) throws Throwable {
		log.info("the method "+methodInvocation.getMethod().getName()+"() start"+
				" with "+Arrays.toString(methodInvocation.getArguments()));
		try{
			Object result = methodInvocation.proceed();
			log.info("the method "+methodInvocation.getMethod().getName()+"() end "+result);
			return result;
		}catch(Exception e){
			log.error("error");
			throw e;
		}
	}
}

<bean id="loggingAroundAdvice" class="com.netease.z3.LoggingAroundAdvice"></bean>
<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingAroundAdvice</value>
			</list>
		</property>
	</bean>


下一篇:spring recipes笔记 - 使用经典的spring切入点匹配方法
分享到:
评论
1 楼 zhhx1115 2010-04-28  
cyz001 写道
虽然动态代理在模块化横切关注点方面很有帮助,但编写如此低层次代码对应用开发者来说太过苛刻。

Aop为应用程序开发者定义了一组高层次的概念,用于表达横切关注点。
经典的spring aop支持4种类型的通知:

1前置通知
2返回通知
3异常通知
4环绕通知


前置通知在方法执行之前执行,可以通过实现MethodBeforeAdvice接口创建它
public class LoggingBeforeAdvice implements MethodBeforeAdvice{
	private Log log = LogFactory.getLog(this.getClass());
	
	public void before(Method method, Object[] arg1, Object target)
			throws Throwable {
		log.info("the method "+method.getName()+"() start");
	}
}

接下来,为每个计算器Bean创建一个代理以应用该通知,在spring aop里,代理的创建是通过一个叫ProxyFactryBean的工厂bean完成

<bean id="loggingBeforeAdvice" class="com.netease.z3.LoggingBeforeAdvice"></bean>

<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingBeforeAdvice</value>
		</list>
		</property>
	</bean>

ProxyFactoryBean只为实现了任意接口的目标bean创建jdk代理。如果目标bean没有实现任何接口,那么ProxyFactoryBean将创建CGLIB代理。
在Main类里,应用从IOC容器获取应用了日志代理通知的代理Bean
public static void main(String[] args) {
		ApplicationContext context = new ClassPathXmlApplicationContext("z3.xml");
		Compute compute = (Compute)context.getBean("computeProxy");
		compute.add(10,10);
	}


返回通知在方法执行后记录方法的结束和返回的结果,可以通过实现AfterReturningAdvice接口创建它

public class LoggingAfterAdvice implements AfterReturningAdvice{
	private Log log = LogFactory.getLog(this.getClass());

	public void afterReturning(Object returnValue, Method method, Object[] arg,
			Object target) throws Throwable {
		// TODO Auto-generated method stub
		log.info("the method "+method.getName()+" end "+returnValue);
	}
}


要使这个通知生效,需要在IOC容器里声明一个它的实例,然后在interceptorNames属性里面增加一项对它的引用

<bean id="loggingAfterAdvice" class="com.netease.z3.LoggingAfterAdvice"></bean>
	<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingBeforeAdvice</value>
				<value>loggingAfterAdvice</value>
			</list>
		</property>
	</bean>


第三种通知是异常通知,要能够产生异常,要为算术计算器增加一个检查,有异常时,将抛出Exception
public class ComputeImpl implements Compute {
	private Log log = LogFactory.getLog(this.getClass());
	/* (non-Javadoc)
	 * @see com.netease.dao.Compute#add(double, double)
	 */
	public void div(double a,double b){
		if(b==0){
			throw new IllegalArgumentException("by zero");
		}
	}
}


对于异常通知类型,必须实现ThrowsAdvice接口,每个处理方法的程序必须是afterThrowing.异常的类型由方法的参数类型指定。

public class LoggingThrowsAdvice implements ThrowsAdvice{
	private Log log = LogFactory.getLog(this.getClass());
	public void afterThrowing(IllegalArgumentException e)throws Throwable{
		log.info("Illegal argument");
	}
}


在ioc容器声明一个该通知的实例,然后在interceptorNames属性增加一项对它的引用

<bean id="loggingThrowsAdvice" class="com.netease.z3.LoggingThrowsAdvice"></bean>
	<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingBeforeAdvice</value>
				<value>loggingAfterAdvice</value>
				<value>loggingThrowsAdvice</value>
			</list>
		</property>
	</bean>



环绕通知,在所有通知类型中,它是最强大的,因为它能完全控制方法的执行过程,所以可以把前面所有通知动作合并到一个单独的通知里面。

环绕通知必须实现MethodIntercepor接口,如果要继续执行原始方法那么必须调用methodInvocation.proceed(),如果忘记这步,原始的方法是不会被调用,下面环绕通知合并了前面的前置,后置,异常通知.

public class LoggingAroundAdvice implements MethodInterceptor {
	private Log log = LogFactory.getLog(this.getClass());
	public Object invoke(MethodInvocation methodInvocation) throws Throwable {
		log.info("the method "+methodInvocation.getMethod().getName()+"() start"+
				" with "+Arrays.toString(methodInvocation.getArguments()));
		try{
			Object result = methodInvocation.proceed();
			log.info("the method "+methodInvocation.getMethod().getName()+"() end "+result);
			return result;
		}catch(Exception e){
			log.error("error");
			throw e;
		}
	}
}

<bean id="loggingAroundAdvice" class="com.netease.z3.LoggingAroundAdvice"></bean>
<bean id="computeProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
		<property name="target" ref="compute"></property>
		<property name="interceptorNames">
			<list>
				<value>loggingAroundAdvice</value>
			</list>
		</property>
	</bean>


下一篇:spring recipes笔记 - 使用经典的spring切入点匹配方法

ssdfsd

相关推荐

    Spring Recipes A Problem-Solution Approach.pdf

    2. **AOP增强**:Spring 2.5增强了对AOP的支持,提供了更加强大的切入点表达式语言,以及更多的代理类型选择,这使得开发者可以更加灵活地实现业务逻辑与横切关注点的分离。 3. **Web模块增强**:在Web模块方面,...

    Spring Recipes A Problem-Solution Approach.rar

    Spring还提供了AOP模块,用于实现切面编程,它允许开发者将关注点(如日志、事务管理)与业务逻辑分离,提高代码的重用性和模块化。书中的章节可能会讲解如何定义切面,创建通知,并将它们编织到目标对象中。 此外...

    SpringRecipes

    - **面向切面编程(AOP)**:阐述了如何利用Spring的AOP支持实现横切关注点的模块化处理,比如事务管理、日志记录等。 - **Bean工厂与应用程序上下文**:解释了Spring容器的基本概念,包括BeanFactory和...

    Spring Boot 2 Recipes

    获取Spring Boot 2微框架的可重用代码配方和代码段 了解Spring Boot 2如何与其他Spring API,工具和框架集成 访问Spring MVC和新的Spring Web Sockets,以实现更简单的Web开发 使用微服务进行Web服务开发并与Spring ...

    Spring Recipes A Problem-Solution Approach(english version pdf)

    面向切面编程(AOP)是Spring的另一个重要特性,书中通过实例解释了如何使用AOP来实现日志记录、事务管理等跨切面关注点。读者将学习到切点表达式、通知类型以及如何定义和应用切面。 数据访问部分,本书讲解了...

    Spring Recipes: A Problem-Solution Approach, Second Edition

    Spring Recipes: A Problem-Solution Approach, Second Edition With over 3 Million users/developers, Spring Framework is the leading “out of the box” Java framework. Spring addresses and offers simple...

    Spring攻略源代码 Spring Recipes

    2. **AOP(面向切面编程)**:Spring的AOP模块支持创建定义横切关注点的模块化方式,比如日志记录、事务管理等。在`Chapter05`和`Chapter09`中,可能会详细讲解如何定义和使用Aspect,以及通知类型(Before、After、...

    Spring Recipes Second Edition

    4. **AOP**:面向切面编程是Spring处理横切关注点(如日志、事务管理)的方式。书中会介绍如何定义切面、切点、通知以及如何将它们编织到应用程序中。 5. **数据访问**:Spring支持多种数据访问技术,包括JDBC、ORM...

    Spring 5 Recipes A Problem-Solution Approach.zip

    3. **AOP(面向切面编程)**:Spring支持声明式AOP,用于处理横切关注点,如日志、事务管理等。书中会介绍如何定义切面、通知类型和如何将它们应用到目标对象上。 4. **Spring MVC**:Spring MVC是构建Web应用程序...

    curator-recipes-2.6.0-API文档-中文版.zip

    赠送jar包:curator-recipes-2.6.0.jar; 赠送原API文档:curator-recipes-2.6.0-javadoc.jar; 赠送源代码:curator-recipes-2.6.0-sources.jar; 赠送Maven依赖信息文件:curator-recipes-2.6.0.pom; 包含翻译后...

    Spring 5 Recipes A Problem-Solution Approach(4th).pdf

    Spring 5 Recipes A Problem-Solution Approach(4th).pdfSpring 5 Recipes A Problem-Solution Approach(4th).pdf

    Spring Boot 2 Recipes: A Problem-Solution Approach

    Using a problem-solution approach, Spring Boot 2 Recipes quickly introduces you to Pivotal's Spring Boot 2 micro-framework, then dives into code snippets on how to apply and integrate Spring Boot 2 ...

    spring recipes 2 edition 随书源码

    2. **AOP(Aspect-Oriented Programming,面向切面编程)**:Spring提供了对AOP的支持,用于实现横切关注点,如日志、事务管理等。书中将介绍如何定义切面、通知类型和组装切面。 3. **数据访问**:Spring提供了...

    Spring Recipes: A Problem-Solution Approach

    《Spring Recipes: A Problem-Solution Approach》是一本深入探讨Spring框架的权威指南,它采用问题-解决方案的结构,为读者提供了实用且详细的指导。这本书涵盖了Spring框架的核心组件以及企业级应用开发中的常见...

    spring 5 recipes

    4. **面向切面编程(Aspect-Oriented Programming, AOP)**:Spring的AOP模块允许开发者定义“切面”,实现横切关注点,如日志、事务管理等,从而让业务代码更专注于核心逻辑。 5. **Spring MVC**:Spring提供的一...

    Spring攻略(第三版)源代码

    Spring Recipes 3rd Edition Sources === These are the sources belonging to Spring Recipes 3rd Edition. Each chapter has its own sources and each chapter can contain multiple source snippets TOC --- ...

Global site tag (gtag.js) - Google Analytics