您的位置:首页 > 其它

IBatis.Net学习笔记(六):Castle.DynamicProxy的使用

2011-04-06 19:40 393 查看
Castle是另外一个框架,包含了AOP、IOC、ORM等多个方面,其中的Castle.DynamicProxy可以实现动态代理的功能,这个也是很多框架的基础。在IBatis.Net中就是使用了Castle.DynamicProxy来实现数据库连接等动态操作的。同时在NHibernet等其他框架中也使用到了这个技术。
下面我通过一个简单例子来看一下如何在我们的代码中调用Castle.DynamicProxy:
一般情况下要有三个类:
1、接口类:

using System;
using System.Collections.Generic;
using System.Text;

namespace GSpring.CastleTest
2、实现类:

using System;
using System.Collections.Generic;
using System.Text;

namespace GSpring.CastleTest
这两个都很普通的接口和实现
3、代理类:

using System;
using System.Collections;
using System.Reflection;
using Castle.DynamicProxy;

namespace GSpring.CastleTest
这个类首先实现接口IInterceptor,然后就可以在方法Intercept中加入我们自己的逻辑

然后看一下调用的方式:

ProxyGenerator proxyGenerator = new ProxyGenerator();
IInterceptor handler = new InterceptorProxy();
Test test = new Test();
ITest iTest = (proxyGenerator.CreateProxy(interfaces, handler, test) as ITest);
string result = iTest.GetName("Hello");最后一句调用的地方,实际会首先执行InterceptorProxy类中的Intercept方法。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: