zoukankan      html  css  js  c++  java
  • IBatis.Net学习笔记(六):Castle.DynamicProxy的使用

    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
    {
        
    public interface ITest
        
    {
            
    string GetName(string pre);
        }

    }

    2、实现类:
    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace GSpring.CastleTest
    {
        
    public class Test : ITest
        
    {
            
    public string GetName(string pre)
            
    {
                
    return pre + ",GSpring";
            }

        }

    }

    这两个都很普通的接口和实现
    3、代理类:
    using System;
    using System.Collections;
    using System.Reflection;
    using Castle.DynamicProxy;

    namespace GSpring.CastleTest
    {
        
    /// <summary>
        
    /// Summary description for DaoProxy.
        
    /// </summary>

        public class InterceptorProxy : IInterceptor
        
    {
             
    public object Intercept(IInvocation invocation, params object[] arguments)
            
    {
                Object result 
    = null;

                
    //这里可以进行数据库连接、打日志、异常处理、权限判断等共通操作
                result = invocation.Proceed(arguments);

                
    return result;
            }


        }

    }

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

    然后看一下调用的方式:
            ProxyGenerator proxyGenerator = new ProxyGenerator();
            IInterceptor handler 
    = new InterceptorProxy();
            Type[] interfaces 
    = typeof(ITest) };
            Test test 
    = new Test();
            ITest iTest 
    = (proxyGenerator.CreateProxy(interfaces, handler, test) as ITest);
            
    string result = iTest.GetName("Hello");
    最后一句调用的地方,实际会首先执行InterceptorProxy类中的Intercept方法。
  • 相关阅读:
    SharePoint 2013中Office Web Apps的一次排错
    如何在Ubuntu上让root帐号可以登录SSH
    如何确定自己的SQL Server的实例是32位的还是64位的?
    [ADO.NET] 如何 使用 OLE DB 讀寫 Excel / 建立 Excel 檔案 (一)
    windows使用nginx实现网站负载均衡测试实例
    jqPlot的Option配置对象详解
    Windows Server 2003安装卡巴斯基2010成功
    Log4Net的使用方法
    在ADO.NET中使用参数化SQL语句的大同小异
    ASP.NET安全问题--Froms验证的具体介绍(中篇)
  • 原文地址:https://www.cnblogs.com/aaa6818162/p/2052801.html
Copyright © 2011-2022 走看看