Spring AOP: Spring之面向方面编程
面向方面编程 ( AOP) 提供从另一个角度来考虑程序结构以完善面向对象编程(OOP)。 面向对象将应用程序分解成 各个层次的对象,而AOP将程序分解成各个方面 或者说 关注点 。 这使得可以模块化诸如事务管理等这些横切多个对象的关注点。(这些关注点术语称作 横切关注点。)
Spring的一个关键组件就是AOP框架。 Spring IoC容器(BeanFactory 和ApplicationContext)并不依赖于AOP, 这意味着如果你不需要使用,AOP你可以不用,AOP完善了Spring IoC,使之成为一个有效的中间件解决方案,。
AOP在Spring中的使用:
· 提供声明式企业服务,特别是作为EJB声明式服务的替代品。这些服务中最重要的是 声明式事务管理,这个服务建立在Spring的事务管理抽象之上。
· 允许用户实现自定义的方面,用AOP完善他们的OOP的使用。
这样你可以把Spring AOP看作是对Spring的补充,它使得Spring不需要EJB就能提供声明式事务管理;或者 使用Spring AOP框架的全部功能来实现自定义的方面。
说了一堆,现在开始进入正题!
(本文不介绍spring的相关配置,请参考其他文档进行spring的配置)
首先看spring的配置文件
首先看spring的配置文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN"
"http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="MyInterceptor"
class="com.softbrain.wangzl.business.MethodTimeCostInterceptor"/>
<bean id="myAOPProxy"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>com.softbrain.wangzl.business.ITest</value>
</property>
<property name="target">
<ref local="test"/>
</property>
<property name="interceptorNames">
<value> MyInterceptor </value>
</property>
</bean>
<bean id="test" class="com.softbrain.wangzl.business.Test">
</bean>
下面一一对相应的bean进行说明
1.<bean id="test" class="com.softbrain.wangzl.business.Test">
</bean>
Test类实现了接口ITest,代码如下:
public interface
ITest {
public abstract void select(String a) throws Exception;
public abstract void update();
public abstract void delete();
}
public class Test implements ITest {
int a = 10;
public void select(String s) throws Exception {
for (int i=0;i<25000000;i++){
a = a*(a+a);
}
}
public void update(){
for (int i=0;i<25000000;i++){
a = a*(a+a);
}
}
public void delete(){
for (int i=0;i<25000000;i++){
a = a*(a+a);
}
}
为什么使用接口定义BO(business object)在下面介绍!
2.<bean id="myAOPProxy"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>com.softbrain.wangzl.business.ITest</value>
</property>
<property name="target">
<ref local="test"/>
</property>
<property name="interceptorNames">
<value> MyInterceptor </value>
</property>
<property name="proxyInterfaces">
<value>com.softbrain.wangzl.business.ITest</value>
</property>
这里用到了Interfaces,接口在java程序中的优点在这就不赘述,如果使用接口,spring容器会使用动态代理,如果不使用接口,可以在这里将上面那句话换成
<property name="proxyTargetClass">
<value>true</value>
</property>
这样容器会使用CGLIB代理,CGLIB和动态代理在性能上有微小的区别,对Spring 1.0来说,后者稍快。
interceptorNames在spring的源码中是一个private String[] interceptorNames;
这说明可以配置多个interceptor,这里只用了一个.
ProxyFactoryBean的具体配置可以参考spring的源码
3. <bean id="MyInterceptor"
class="com.softbrain.wangzl.business.MethodTimeCostInterceptor"/>
class="com.softbrain.wangzl.business.MethodTimeCostInterceptor"/>
这是AOP的Interceptor类,代码如下
public class MethodTimeCostInterceptor implements MethodInterceptor, Serializable{
static Logger log = null;
/* (non-Javadoc)
* @see org.aopalliance.intercept.MethodInterceptor#invoke(org.aopalliance.intercept.MethodInvocation)
*/
public Object invoke(MethodInvocation invocation) throws Throwable {
log = Logger.getLogger(invocation.getMethod().getName());
long time = System.currentTimeMillis();
log.info("begin");
Object rval = invocation.proceed();
System.out.println(invocation.getMethod().getParameterTypes());
time = System.currentTimeMillis() - time;
log.info("end");
System.out.println(time);
return rval;
}
}
这里捕获所有的ITest接口的方法,计算运行时间并打印log
这里捕获所有的ITest接口的方法,计算运行时间并打印log
接口的方法,计算运行时间并打印log
这里问题来了,能否像spring的事务处理那样对指定的方法使用AOP哪?
可以,
<bean id="settersAndAbsquatulateAdvisor"
class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">
<property name="advice">
<ref local="MyInterceptor"/>
</property>
<property name="patterns">
<list>
<value>select*</value>
</list>
</property>
</bean>
这里是用正则表达式来定义patterns,spring的正则表达式采用jarkata的oro,相应的对myAOPProxy进行修改
<bean id="myAOPProxy"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="proxyInterfaces">
<value>com.softbrain.wangzl.business.ITest</value>
</property>
<property name="target">
<ref local="test"/>
</property>
<property name="interceptorNames">
<value> settersAndAbsquatulateAdvisor</value>
</property>
这样一个简单的spring的AOP应用配置完了,当然这篇文章只是起一个抛砖引玉的作用,希望大家多来拍砖!