分享
 
 
 

AOP以及其在Spring中的应用(二)

王朝java/jsp·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

Spring中AOP的实现就是通过动态代理来实现的。动态代理的实现在上篇blog中已经涉及。Spring中目前最为实用的AOP应用,非用其实现的事务管理机制莫属。也正是这一点,使得Spring AOP大方异彩。

那么我们继续围绕上节的例子来探讨一下Spring中AOP机制的应用与开发。

首先,看看AOP中几个基本的概念对应在AOP中的实现:

Ø 切点(PointCut)

一系列连接点的集合,它指明处理方式(Advice)将在何时被触发。

对于我们开发而言,“何时触发”的条件大多是面向Bean的方法进行制定。像Spring的配置化事务管理时针对方法名称可进行PointCut设置,从而指定对所有以声明字符开头的方法进行基于AOP的事务管理。那么同样,对于我们自己实现的AOP组件而言,我们也可以以方法名作为触发判定条件。

我们可以通过在XML配置文件中配置以下节点,为我们的组件设定触发条件。

<bean id="myPointcutAdvisor"

class="org.springframework.aop.support.RegexpMethodPointcutAdvisor">

<property name="advice">

<ref local="MyInterceptor" />

</property>

<property name="patterns">

<list>

<value>.*save.*</value>

<value>.*do.*</value>

</list>

</property>

</bean>

上面我们针对MyInterceptor设定了一个基于方法名的触发条件,也就是说,当目标类的指定方法运行时,MyInterceptor即被触发。

Ø 处理方式(Advice)

也就是说要实现一个Interceptor,以供在连接点时触发。Spring中采用了AOP联盟(AOP Alliance)的通用AOP接口(接口定义位aopalliance.jar)。这里我们采用aopalliance.jar中定义的MethodInterceptor作为我们的Advice实现接口。那么我们上节例子中的处理方式应实现为如下Interceptor:

package test.aop.spring;

import java.util.logging.Logger;

import org.aopalliance.intercept.MethodInterceptor;

import org.aopalliance.intercept.MethodInvocation;

/**

* @author xkf

**/

public class LockInterceptor implements MethodInterceptor {

private Logger logger = Logger.getLogger(this.getClass().getName());

public Object invoke(MethodInvocation invocation) throws Throwable {

// TODO Auto-generated method stub

lock();

Object ret= invocation.proceed();

unlock();

return ret;

}

private void lock(){

logger.info("lock domain object...");

}

private void unlock(){

logger.info("unlock domain object...");

}

}

实现后,对应的Interceptor实现类在配置文件中的体现如下:

<bean id="MyInterceptor" class="test.aop.spring.LockInterceptor"/>

最后,我们还需要定义一个Spring AOP ProxyFactory用于加载执行AOP组件,并且需要将Advice通过IOC的方式注入到接口以及实现类。

对应的配置文件应如下配置从而实现这些内容:

<bean id="myAOPProxy" class="org.springframework.aop.framework.ProxyFactoryBean">

<property name="proxyInterfaces">

<value>test.aop.spring.DomainObjDAO</value>

</property>

<property name="target">

<ref local="impl" />

</property>

<property name="interceptorNames">

<value>myPointcutAdvisor</value>

</property>

</bean>

<bean id="impl" class="test.aop.spring.DomainObjDAOImpl"/>

万事大吉!写一个TestCase来看一下运行结果:

package test.aop.spring;

import junit.framework.TestCase;

import org.springframework.context.ApplicationContext;

import org.springframework.context.support.FileSystemXmlApplicationContext;

/**

* @author xkf

*/

public class SpringTestCase extends TestCase {

DomainObjDAO test=null;

protected void setUp() throws Exception {

super.setUp();

ApplicationContext ctx=new FileSystemXmlApplicationContext("test/Bean.xml");

test = (DomainObjDAO) ctx.getBean("myAOPProxy");

}

protected void tearDown() throws Exception {

super.tearDown();

}

public void testSave(){

test.save();

}

}

运行结果如下:

信息: Creating shared instance of singleton bean 'MyInterceptor'

2004-12-7 23:50:11 test.aop.spring.LockInterceptor lock

信息: lock domain object...

saving domain object......

2004-12-7 23:50:11 test.aop.spring.LockInterceptor unlock

信息: unlock domain object...

OK!至此,我们已经探讨了AOP动态代理的实现以及其在Spring中的应用,接下来的Blog中我将会关注Spring中事务以及持久化的实现。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有