知识大全 实现动态代理的介绍和使用
Posted 知
篇首语:曾无好事来相访,赖尔高文一起予。本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识大全 实现动态代理的介绍和使用相关的知识,希望对你有一定的参考价值。
引言 假如现在我们有这样在这个示例中我将使用尽可能简单的逻辑实现所有功能需求 这将更突出我们所要解决的核心问题 例子是一个简单计算器类
public class Calculator public int Add(int x int y) return x + y;
这个类再简单不过了 不过若你将它想象为一个可能更复杂的业务处理类的时候 你将面临除了核心功能实现之外的更多处理细节 比如说 权限控制 审计日志 性能监测 缓冲处理 事务环境等等 为简单起见 我们首先为该类增加记录日志的功能 该功能要求将对每个方法的调用和处理结果输出到Console中 如下
public class Calculator public int Add(int x int y) Console Write( Add( ) x y); int result = x + y; Console WriteLine( = result); return result;
再简单不过了 对吧?现在我们需要为该方法实现性能监测 如下
public class Calculator
public int Add(int x int y)
Console Write( Add( ) x y);
DateTime TimeBegin = System DateTime Now;
int result = x + y;
TimeSpan TimeInter =System DateTime Now TimeBegin;
Console Write( [ ] TimeInter);
Console WriteLine( = result);
return result;
此时你已经感觉到 虽然我们实现了所需的功能 但是在一个方法中堆叠了处理各类事宜的不同代码 虽然在这个简单例子中不会感觉有什么不爽 但是请你想象一下如果我们将为该类添加第二个方法时会发生什么事情
public class Calculator
public int Add(int x int y)
Console Write( Add( ) x y);
DateTime TimeBegin = System DateTime Now;
int result = x + y;
TimeSpan TimeInter =System DateTime Now TimeBegin;
Console Write( [ ] TimeInter);
Console WriteLine( = result);
return result;
public int Subtract(int x int y)
Console Write( Subtract( ) x y);
DateTime TimeBegin = System DateTime Now;
int result = x y;
TimeSpan TimeInter =System DateTime Now TimeBegin;
Console Write( [ ] TimeInter);
Console WriteLine( = result);
return result;
在两个方法中已经明显出现重复代码了 这可不是一个好的解决办法——想想一下如果我们的计算器有 个方法呢?如果我们还有类似于计算器类的另外数十个类呢?如果我们还有更多的方法级功能要实现呢(权限控制 事务管理……)?在企业级应用开发中 这可是一个经常会遇的问题 为清楚起见 我们将问题分解成两部分 首要的问题是代码职责混淆 其次则是同样的代码逻辑反复多次——这些问题都将导致开发管理 代码编写与维护的各种困难
方案一 自己手动编写代理解决 首先 我们定义接口ICalculator using System;
namespace Proxy
public interface ICalculator
int Add(int x int y);
int Subtract(int x int y);
具体实现一个接口 using System;
namespace Proxy
public class Calculator:ICalculator
public virtual int Add(int x int y)
int result = x + y;
return result;
public virtual int Subtract(int x int y)
int result = x y;
return result;
编写增加日志和性能检测功能的代理类增加记录日志的功能 即功能要求将对每个方法的调用和处理结果输出到Console 增加性能监测
有两种实现方式 注释了其中的一种
using System;
namespace Proxy
// ///
// /// CalProxy 的摘要说明
// ///
// public class CalProxy:ICalculator
//
// private Calculator _Calculator;
// public CalProxy()
//
// this _Calculator=new Calculator();
//
// private DateTime TimeBegin = System DateTime Now;
// private void PreDoSomething(int x int y)
//
// TimeBegin = System DateTime Now;
// Console Write( Number( )\\n x y);
//
// //实现add
// public virtual int Add(int x int y)
//
// this PreDoSomething(x y);
// int result = this _Calculator Add(x y);
// this PostDoSomething(result);
// return result;
//
// //实现sub
// public virtual int Subtract(int x int y)
//
// this PreDoSomething(x y);
// int result = this _Calculator Subtract(x y);
// this PostDoSomething(result);
// return result;
//
// private void PostDoSomething(int result)
//
// TimeSpan TimeInter =System DateTime Now TimeBegin;
// Console Write( 运行时间[ ]\\n TimeInter);
// Console WriteLine( 运行结果= \\n result);
//
//
///
/// CalProxy 的摘要说明
///
public class CalProxy:Calculator
public CalProxy()
private DateTime TimeBegin = System DateTime Now;
private void PreDoSomething(int x int y)
TimeBegin = System DateTime Now;
Console Write( Number( )\\n x y);
//实现add
public override int Add(int x int y)
this PreDoSomething(x y);
int result = base Add(x y);
this PostDoSomething(result);
return result;
//实现sub
public override int Subtract(int x int y)
this PreDoSomething(x y);
int result = base Subtract(x y);
this PostDoSomething(result);
return result;
private void PostDoSomething(int result)
TimeSpan TimeInter =System DateTime Now TimeBegin;
Console Write( 运行时间[ ]\\n TimeInter);
Console WriteLine( 运行结果= \\n result);
外界的调用方式ICalculator ICal=new Proxy CalProxy();
ICal Add( );
ICal Subtract( );
运行程序的结果
Number( )
运行时间[ : : ]
运行结果=
Number( )
运行时间[ : : ]
运行结果=
方案二 通过使用Castle DynamicProxy 实现Iinterceptor解决步骤 与解决问题 实现StandardInterceptor 增加日志和性能监测功能StandardInterceptor是接口Iinterceptor的一个实现类 我们实现StandardInterceptor
using System;
using System Collections;
using Castle DynamicProxy;
namespace Proxy
///
/// ProxyInterceptor 拦截器 实现了日志和性能监测
///
public class ProxyInterceptor:StandardInterceptor
private System DateTime TimeBegin=System DateTime Now;
public ProxyInterceptor()
protected override void PostProceed(IInvocation invocation ref object returnValue params object[] arguments)
TimeSpan TimeInter =System DateTime Now TimeBegin;
Console Write( 运行时间[ ]\\n TimeInter);
Console WriteLine( 运行结果= \\n returnValue);
base PostProceed(invocation ref returnValue arguments);
protected override void PreProceed(IInvocation invocation params object[] args)
Console Write( Number( )\\n args[ ] args[ ]);
TimeBegin=System DateTime Now;
base PreProceed(invocation args);
public override object Intercept(IInvocation invocation params object[] args)
PreProceed(invocation args);
object retValue = invocation Proceed( args );
PostProceed(invocation ref retValue args);
return retValue;
使用Castle DynamicProxy调用ProxyGenerator generator = new ProxyGenerator();
object proxy = generator CreateClassProxy(typeof(Calculator) new ProxyInterceptor());
ICalculator ICalCastle=proxy as ICalculator;
ICalCastle Add( );
ICalCastle Subtract( );
实现过程 首先通过代码生成完成一个代理类 该代理类继承自要织入的类 然后在代理类中覆蓋要拦截的方法 并在覆蓋的方法中封装Invocation对象 并传给用户传入的Intercepter对象的Intercept方法 在Intercept方法依次调用Intercepter的PreProcess 通过Invocation传入的Delegate指向的回调函数 Intercepter的PostProcess方法 从而达到拦截的目的
意义 在aop领域 可以将日志 事务 缓存等附加功能用此实现
cha138/Article/program/net/201311/12954相关参考
动态代理 要求测算一个类里面的某个方法的执行时间 直接在一个测试的方法中调用这个类的方法就可以了也可以直接的写在这个类的main方法里面 继承这个类对需要测算时间的方法进行重写方法中这样来写
Java实践:用动态代理进行修饰 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 动态代理工具是j
JAVA动态代理 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 在目前的Java开发包中包含了对
java动态代理DynamicProxy 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 被代理对
Java动态代理机制综合分析及扩展 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! Java动态代
JVM技术,反射与动态代理 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! Java程序的工作机制
Delphi中关于动态代理应用技巧 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!本来想上周末没能用
知识大全 Java设计模式-----Proxy模式(动态代理)
Java设计模式-----Proxy模式(动态代理) 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧!
浅谈Java中用动态代理类实现记忆功能 以下文字资料是由(全榜网网www.cha138.com)小编为大家搜集整理后发布的内容,让我们赶快一起来看一下吧! 记忆是衍生
Java代码 publicinterfaceIHello publicvoidhello(Stringname); Java代码 publicclassHelloImplimpleme