`
Callan
  • 浏览: 735995 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

Spring AOP

    博客分类:
  • Java
阅读更多
Spring AOP

理解advice,pointcut和advisor.
advice是想向别的程序内部不同的地方注入的代码.
pointcut定义了需要注入advice的位置.
advisor是pointcut和advice的装配器,是将advice注入主程序中预定义位置的代码.

spring提供的几个种同的advices,比如before advice,after advice,around advice,throw advice等等.

 

业务接口IHello.java

 

public interface IHello {
	public void toHello(String name);
}

 

实现HelloImp.java

 

public class HelloImp implements IHello {

	public void toHello(String name) {
		System.out.println("hello:" + name);
	}

}

 

以下是几种advices的实现:

 

1. 1. before advice 会在目标对象被调用之前执行的.before advice的实现代码:

 

LogBeforeAdvice.java

 

public class LogBeforeAdvice implements MethodBeforeAdvice {

	public void before(Method method, Object[] param, Object target)
			throws Throwable {
		System.out.println("method start..." + method.getName());
		
	}
}

接口MethodBeforeAdvice只有一个方法before需要实现,它定义了advice的实现.
before方法有三个参数,参数Method是advice开始后执行的方法.Object[]是传给被调用的参数数组,Object是执行方法m对象的引用.


2. after advice 会在目标对象被调用之后执行的.after advice的实现代码:

 

public class LogAfterAdvice implements AfterReturningAdvice {

	public void afterReturning(Object arg0, Method method, Object[] arg2,
			Object arg3) throws Throwable {
		
		System.out.println("method end..." + method.getName() + arg2[0]);
		
	}

}

 

spring的配置:

 

<bean id="logBeforeAdvice" class="com.spring.advices.LogBeforeAdvice"></bean>
	
<bean id="hello" class="com.dynamic.proxy.HelloImp"></bean>
	
<bean id="logAfterAdvice" class="com.spring.advices.LogAfterAdvice"></bean>
	
<bean id="helloProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
	<property name="proxyInterfaces">
		<value>com.dynamic.proxy.IHello</value>
	</property>
		
	<property name="target">
		<ref bean="hello"/>
	</property>
		
	<property name="interceptorNames">
		<list>
			<value>logBeforeAdvice</value>
			<value>logAfterAdvice</value>
		</list>
	</property>
</bean>

 

 

属性proxyInterface定义了接口类。
   属性target指向本地配置的一个bean
   属性interceptorNames是唯一允许定义一个值列表的属性.这个列表包含所有需要在beanTarget上执行的advice.
 

编写主方法的Java代码:

 

public class SpringDemo {
		public static void main(String[] args) {
			
			ApplicationContext context = new FileSystemXmlApplicationContext("classpath:applicationContext.xml");
			
			IHello hello = (IHello)context.getBean("helloProxy");
			
			hello.toHello("callan");
		}
	}

每次toHell方法调用时,都会执行advice.也就是说调用toHello会先执行LogAfterAdvice,调用完后会执行LogAfterAdvice
   
   
    以上是before advice和after advice的实现,也可以单独用MethodInterceptor来代替它们的功能.不同的是,在MethodInterceptor的invoke()方法中你要决定是否使用    proceed()方法来调用目标方法.

 

3. around advice的实现:

 

 public class LogInterceptor implements MethodInterceptor {

		public Object invoke(MethodInvocation method) throws Throwable {
			// TODO Auto-generated method stub
			
			System.out.println("start...");
			
			Object obj = null;
			
			// method.proceed()会调用目示方法,在调用目录方法之前打印了start,之后打印了end,实现与before,after的组合功能
			obj = method.proceed();
			
			System.out.println("end...");
			
			return obj;
		}

	}

 

配置与before,after相似

 

<bean id="helloProxy2" class="org.springframework.aop.framework.ProxyFactoryBean">
	<property name="proxyInterfaces">
		<value>com.dynamic.proxy.IHello</value>
	</property>
		
	<property name="target">
		<ref bean="hello"/>
	</property>
		
	<property name="interceptorNames">
		<list>
			<value>logInterceptore</value>
		</list>
	</property>
</bean>

 

before advice,after advice,around advice三种只定义了切入在代理接口执行前后执行,其实可以还可以更细的切入日志等

 

4. 有一个方便的类叫做NameMatchMethodPointcutAdvisor,它允许通过名称选择方法,只有匹配的方法才会加入日志.要想使用NameMatchMethodPointcutAdvisor,只需要修改配置.

 

<bean id="helloAdvice" class="org.springframework.aop.support.NameMatchMethodPointcutAdvisor">
	<property name="mappedName">
		<value>toHello</value>   <!-- 方法名 -->
	</property>
		
	<property name="advice">
		<ref bean="logBeforeAdvice"/>
	</property>
</bean>
    
    <bean id="helloProxy3" class="org.springframework.aop.framework.ProxyFactoryBean">
	<property name="proxyInterfaces">
		<value>com.dynamic.proxy.IHello</value>
	</property>
		
	<property name="target">
		<ref bean="hello"/>
	</property>
		
	<property name="interceptorNames">
		<list>
			<value>helloAdvice</value>
		</list>
	</property>
</bean>

 

IHello接口中,只有toHello方法才能切入日志.
    mappedName是定义匹配的方法名,还可以使用mappedNames定义方法列表
    <property name="mappedNames">
      <value>toHello</value>   <!-- 方法名 -->
      <value>toHello2</value>   <!-- 方法名 -->
      <value>toHello3</value>   <!-- 方法名 -->
    </property>

 

5.  RegExpMethodPointcutAdvisor与NameMatchMethodPointcutAdvisor类例,只需要修改配置.

 

<bean id="reg" class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
	<property name="pattern">
		<value>.*hello</value>
	</property>
		
	<property name="advice">
		<list>
			<value>logInterceptore</value>
		</list>
	</property>
</bean>

pattern属性符合完整类名加方法名称.比如IHello下的toHello方法,就要编写com.dynamic.proxy.IHello.toHello.
 
 .  符合任何单一字符 
 +   符合前一个字符一次或多次
 *  符合前一个字符零次或多次
 
 
 6.如果要为目标对象提供advice,必须要为其建立代理对象,如果程序规模很大时,一个个代理会很麻烦,spring提供了自动代理BeanNameAutoProxyCreator与  DefaultAdvisorAutoProxyCreator
  
   BeanNameAutoProxyCreator:根据beanName进行自动代理.
  
    spring配置:

 <?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">

<bean id="logBeforeAdvice" class="com.spring.advices.LogBeforeAdvice"></bean>
			
<bean id="helloService" class="com.dynamic.proxy.HelloImp">
</bean>

<bean id="beanNameAutoProxyCreator" class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
	<property name="beanNames">
		<list>
			<value>*Service</value>
		</list>
	</property>
				
	<property name="interceptorNames">
		<value>logBeforeAdvice</value>
	</property>
</bean>
</beans>

 

为每个beanName为Service结属的bean提供自动的代理.

public class SpringDemo {
	public static void main(String[] args) {
				
		ApplicationContext context = new FileSystemXmlApplicationContext("classpath:applicationContext.xml");
				
		IHello hello = (IHello)context.getBean("helloService");
				
		hello.toHello("callan");
}
		}

这样在toHello方法调用前也会执行logBeforeAdvice,以后只要想要为目标对象使用log advice时,只要取名为***Service就可以了

  • src.rar (3.3 KB)
  • 描述: 源码
  • 下载次数: 61
5
0
分享到:
评论
4 楼 yylahttc 2008-05-27  
3 楼 yylahttc 2008-05-27  
2 楼 Callan 2008-02-15  
可以定义BeanNameAutoProxyCreator,该bean是个bean后处理器,无需被引用,因此没有id属性
这个bean后处理器,根据事务拦截器为目标bean自动创建事务代理
比如配置:

<!-- Spring声明式事务 -->
<bean id="transactionManager"
	class="org.springframework.orm.hibernate3.HibernateTransactionManager">
	<property name="sessionFactory" ref="sessionFactory" />
		<property name="dataSource" ref="dataSource" />
	</bean>

	<bean id="autoProxyCreator"
	class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
	<property name="interceptorNames"
		value="transactionInterceptor" />
	<property name="beanNames" value="*Dao,*Po,*Tao,*BatchDeal" />
	</bean> 
<bean id="transactionInterceptor"
	class="org.springframework.transaction.interceptor.TransactionInterceptor">
	<property name="transactionManager" ref="transactionManager" />
	<property name="transactionAttributeSource"
		ref="transactionAttributeSource" />
</bean>
<bean id="transactionAttributeSource"
	class="org.springframework.transaction.interceptor.NameMatchTransactionAttributeSource">
	<property name="properties">
		<props>
		<prop key="get*">PROPAGATION_REQUIRED,readOnly</prop>

			</props>
		</property>
	</bean>
1 楼 雁行 2008-02-14  
若<bean id="hello" >引入事务,那又该如何配置?

相关推荐

    spring aop jar 包

    Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的重要组成部分,它提供了一种在不修改源代码的情况下,对程序进行功能增强的技术。这个"spring aop jar 包"包含了实现这一功能所需的类和接口,...

    Spring AOP 16道面试题及答案.docx

    Spring AOP,全称为Aspect Oriented Programming,是面向切面编程的一种编程范式,它是对传统的面向对象编程(OOP)的一种补充。在OOP中,核心是对象,而在AOP中,核心则是切面。切面是关注点的模块化,即程序中的...

    简单spring aop 例子

    Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点问题,如日志、事务管理、安全性等。本示例将简要介绍如何在Spring应用中实现AOP,通过实际的...

    spring aop 自定义注解保存操作日志到mysql数据库 源码

    3、对spring aop认识模糊的,不清楚如何实现Java 自定义注解的 4、想看spring aop 注解实现记录系统日志并入库等 二、能学到什么 1、收获可用源码 2、能够清楚的知道如何用spring aop实现自定义注解以及注解的逻辑...

    死磕Spring之AOP篇 - Spring AOP两种代理对象的拦截处理(csdn)————程序.pdf

    Spring AOP 是一种面向切面编程的技术,它允许我们在不修改源代码的情况下,对应用程序的特定部分(如方法调用)进行增强。在 Spring 中,AOP 的实现主要依赖于代理模式,有两种代理方式:JDK 动态代理和 CGLIB 动态...

    Spring AOP完整例子

    Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许开发者在不修改源代码的情况下,通过插入切面来增强或改变程序的行为。在本教程中,我们将深入探讨Spring AOP的不同使用方法,包括定义切点、通知类型...

    Spring Aop四个依赖的Jar包

    Spring AOP,全称Aspect-Oriented Programming(面向切面编程),是Spring框架的一个重要模块,它通过提供声明式的方式来实现面向切面编程,从而简化了应用程序的开发和维护。在Spring AOP中,我们无需深入到每个...

    spring aop依赖jar包

    现在,我们回到主题——"springaop依赖的jar包"。在Spring 2.5.6版本中,使用Spring AOP通常需要以下核心jar包: - `spring-aop.jar`:这是Spring AOP的核心库,包含了AOP相关的类和接口。 - `spring-beans.jar`:...

    spring AOP 引入jar包,spring IOC 引入Jar包

    Spring AOP 和 Spring IOC 是 Spring 框架的两个核心组件,它们对于任何基于 Java 的企业级应用开发都至关重要。Spring AOP(面向切面编程)允许开发者在不修改源代码的情况下,通过“切面”来插入新的行为或增强已...

    反射实现 AOP 动态代理模式(Spring AOP 的实现原理)

    面向切面编程(AOP)是一种编程范式,旨在将横切关注点(如日志、安全等)与业务逻辑分离,从而提高模块化。...利用Java反射机制和Spring AOP框架,开发者可以方便地实现AOP,从而提升代码的模块化和可维护性。

    Spring AOP实现机制

    **Spring AOP 实现机制详解** Spring AOP(面向切面编程)是Spring框架的核心特性之一,它允许程序员在不修改源代码的情况下,通过“切面”来插入额外的业务逻辑,如日志、事务管理等。AOP的引入极大地提高了代码的...

    springAOP配置动态代理实现

    Spring AOP(面向切面编程)是Spring框架的重要组成部分,它允许程序员在不修改源代码的情况下,通过在运行时插入额外的行为(如日志记录、性能监控等)来增强对象的功能。动态代理则是Spring AOP实现的核心技术之一...

    Spring AOP面向方面编程原理:AOP概念

    ### Spring AOP面向方面编程原理:AOP概念详解 #### 一、引言 随着软件系统的日益复杂,传统的面向对象编程(OOP)逐渐暴露出难以应对某些横切关注点(cross-cutting concerns)的问题。为了解决这一挑战,面向方面编程...

    小马哥讲 Spring AOP 编程思想 - API 线索图.pdf

    在讨论Spring AOP(面向切面编程)时,首先需要理解几个核心概念。Spring AOP 是Spring框架提供的一个功能模块,它允许开发者将横切关注点(cross-cutting concerns)从业务逻辑中解耦出来,通过在方法调用前后进行...

    spring aop切面拦截指定类和方法实现流程日志跟踪

    ### Spring AOP 实现流程日志跟踪 #### 一、背景与目的 在现代软件开发过程中,为了确保系统的稳定性和可维护性,通常会引入非功能性的需求来增强应用程序的功能,比如日志记录、安全控制等。这些需求往往不是业务...

    spring aop 五个依赖jar

    Spring AOP(面向切面编程)是Spring框架的重要组成部分,它提供了一种模块化和声明式的方式来处理系统中的交叉关注点,如日志、事务管理等。在Java应用中,AOP通过代理模式实现了切面编程,使得我们可以将业务逻辑...

    Spring AOP 入门作者:廖雪峰

    ### Spring AOP 入门详解 #### 一、Spring AOP 概述 Spring AOP(Aspect Oriented Programming,面向切面编程)是Spring框架的一个关键特性,它为开发者提供了在运行时动态添加代码(即横切关注点或切面)到已有...

    Spring源码最难问题:当Spring AOP遇上循环依赖.docx

    Spring源码最难问题:当Spring AOP遇上循环依赖 Spring源码中最难的问题之一是循环依赖问题,当Spring AOP遇上循环依赖时,该如何解决? Spring通过三级缓存机制解决循环依赖的问题。 在Spring中,bean的实例化...

    spring AOP依赖三个jar包

    Spring AOP,即Spring的面向切面编程模块,是Spring框架的重要组成部分,它允许开发者在不修改源代码的情况下,对程序进行横切关注点的处理,如日志、事务管理等。实现这一功能,主要依赖于三个核心的jar包:aop...

    spring aop的demo

    在`springAop1`这个压缩包中,可能包含了一个简单的应用示例,展示了如何定义一个切面类,以及如何在该类中定义通知方法。例如,我们可能会看到一个名为`LoggingAspect`的类,其中包含了`@Before`注解的方法,用于在...

Global site tag (gtag.js) - Google Analytics