利用Unity实现AOP

.NET程序中,可以利用Unity来实现AOP,用来进行日志、缓存或权限的处理。这里我们来写一个简单的程序,让其实现简单的AOP功能。

1.使用NuGet,在项目中获取Microsoft.Practices.Unity。

2.新建一个ITalk类及其实现

    public interface ITalk{string Speak(string msg);}public class Talk : ITalk{public string Speak(string msg){Console.WriteLine(msg);return msg;}}

3.再进一个ServiceLocator类,用来实现接口的依赖反转

using Microsoft.Practices.Unity;
using Microsoft.Practices.Unity.Configuration;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Reflection;namespace AopDemo
{/// <summary>/// Represents the Service Locator./// </summary>public sealed class ServiceLocator : IServiceProvider{#region Private Fieldsprivate readonly IUnityContainer container;#endregion#region Private Static Fieldsprivate static readonly ServiceLocator instance = new ServiceLocator();#endregion#region Ctor/// <summary>/// Initializes a new instance of <c>ServiceLocator</c> class./// </summary>private ServiceLocator(){UnityConfigurationSection section = (UnityConfigurationSection)ConfigurationManager.GetSection("unity");container = new UnityContainer();section.Configure(container);}#endregion#region Public Static Properties/// <summary>/// Gets the singleton instance of the <c>ServiceLocator</c> class./// </summary>public static ServiceLocator Instance{get { return instance; }}#endregion#region Private Methodsprivate IEnumerable<ParameterOverride> GetParameterOverrides(object overridedArguments){List<ParameterOverride> overrides = new List<ParameterOverride>();Type argumentsType = overridedArguments.GetType();argumentsType.GetProperties(BindingFlags.Public | BindingFlags.Instance).ToList().ForEach(property =>{var propertyValue = property.GetValue(overridedArguments, null);var propertyName = property.Name;overrides.Add(new ParameterOverride(propertyName, propertyValue));});return overrides;}#endregion#region Public Methods/// <summary>/// Gets the service instance with the given type./// </summary>/// <typeparam name="T">The type of the service.</typeparam>/// <returns>The service instance.</returns>public T GetService<T>(){return container.Resolve<T>();}/// <summary>/// Gets the service instance with the given type by using the overrided arguments./// </summary>/// <typeparam name="T">The type of the service.</typeparam>/// <param name="overridedArguments">The overrided arguments.</param>/// <returns>The service instance.</returns>public T GetService<T>(object overridedArguments){var overrides = GetParameterOverrides(overridedArguments);return container.Resolve<T>(overrides.ToArray());}/// <summary>/// Gets the service instance with the given type by using the overrided arguments./// </summary>/// <param name="serviceType">The type of the service.</param>/// <param name="overridedArguments">The overrided arguments.</param>/// <returns>The service instance.</returns>public object GetService(Type serviceType, object overridedArguments){var overrides = GetParameterOverrides(overridedArguments);return container.Resolve(serviceType, overrides.ToArray());}#endregion#region IServiceProvider Members/// <summary>/// Gets the service instance with the given type./// </summary>/// <param name="serviceType">The type of the service.</param>/// <returns>The service instance.</returns>public object GetService(Type serviceType){return container.Resolve(serviceType);}#endregion}
}
View Code

4.接下来是错误和缓存处理的类。我们这边只是简单的在控制台输出一句话,证明代码有执行。

ExceptionLoggingBehavior.cs

public class ExceptionLoggingBehavior : IInterceptionBehavior{public IEnumerable<Type> GetRequiredInterfaces(){return Type.EmptyTypes;}public IMethodReturn Invoke(IMethodInvocation input, GetNextInterceptionBehaviorDelegate getNext){Console.WriteLine("ExceptionLoggingBehavior");return getNext().Invoke(input, getNext);}public bool WillExecute{get { return true; }}}
View Code

CachingBehavior.cs

  public class CachingBehavior : IInterceptionBehavior{public IEnumerable<Type> GetRequiredInterfaces(){return Type.EmptyTypes;}public IMethodReturn Invoke(IMethodInvocation input, GetNextInterceptionBehaviorDelegate getNext){Console.WriteLine("CachingBehavior");return getNext().Invoke(input, getNext);}public bool WillExecute{get { return true; }}}
View Code

5.配置App.Config文件

<configuration><configSections><section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration"/></configSections><startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /></startup><!--BEGIN: Unity--><unity xmlns="http://schemas.microsoft.com/practices/2010/unity"><sectionExtension type="Microsoft.Practices.Unity.InterceptionExtension.Configuration.InterceptionConfigurationExtension, Microsoft.Practices.Unity.Interception.Configuration"/><container><extension type="Interception"/><!--Cache Provider--><register type="AopDemo.ITalk, AopDemo" mapTo="AopDemo.Talk, AopDemo"><interceptor type="InterfaceInterceptor"/><interceptionBehavior type="AopDemo.InterceptionBehaviors.CachingBehavior, AopDemo"/><interceptionBehavior type="AopDemo.InterceptionBehaviors.ExceptionLoggingBehavior, AopDemo"/></register></container></unity><!--END: Unity-->
</configuration>

6.调用

    static void Main(string[] args){ITalk talk = ServiceLocator.Instance.GetService<ITalk>();talk.Speak("Hello");}

7.结果

可以看到在打印出Hello前,代码先执行到了缓存与错误处理的方法。

PS:如果IOC的时候报类似错误

Exception is: InvalidOperationException - The type OAManageClient has multiple constructors of length 2. Unable to disambiguate.则配置文件应该增加<constructor></constructor>

 <register type="AopDemo.ITalk, AopDemo" mapTo="AopDemo.Talk, AopDemo"><interceptor type="InterfaceInterceptor"/><interceptionBehavior type="AopDemo.InterceptionBehaviors.CachingBehavior, AopDemo"/><interceptionBehavior type="AopDemo.InterceptionBehaviors.ExceptionLoggingBehavior, AopDemo"/>
        <constructor></constructor></register>

 

转载于:https://www.cnblogs.com/Gyoung/archive/2013/06/06/3123022.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/575945.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

javascript数组的各种操作

用 js有非常久了&#xff0c;但都没有深究过js的数组形式。偶尔用用也就是简单的string.split(char)。这段时间做的一个项目&#xff0c;用到数组的地方非常多&#xff0c;自以为js高手的自己竟然无从下手&#xff0c;一下狠心&#xff0c;我学&#xff01;呵呵。学了之后才知道…

老男孩Shell企业面试题30道 [答案]

老男孩Shell企业面试题 shell 2016年9月7日 本文来自于老男孩教育,未经本人同意&#xff0c;禁止转载&#xff01;否则追究法律责任。 原文&#xff1a;http://oldboy.blog.51cto.com/2561410/1632876 企业面试题1&#xff1a; &#xff08;生产实战案例&#xff09;&#x…

[bbk2908]第4集 - Chapter 03 - 介绍RAC的体系结构

艾丝凡转载于:https://www.cnblogs.com/arcer/archive/2013/06/14/3135338.html

计算机二级access什么时候报名_全国计算机等级考试什么时候报名

展开全部每年有两次32313133353236313431303231363533e78988e69d8331333365653934报名及考试安排&#xff0c;以2017年为例&#xff0c;其报名时间及考试时间如下&#xff1a;报名时间&#xff1a;2016年12月12日-21日考试时间&#xff1a;2017年3月25日-27日报名时间&#xff…

feach同步 git_git fetch 更新远程代码到本地仓库

理解 fetch 的关键, 是理解 FETCH_HEAD&#xff0c;FETCH_HEAD指的是: 某个branch在服务器上的最新状态’。这个列表保存在 .Git/FETCH_HEAD 文件中, 其中每一行对应于远程服务器的一个分支。当前分支指向的FETCH_HEAD, 就是这个文件第一行对应的那个分支.一般来说, 存在两种情…

对javascript中的匿名函数的理解

(function(){//这里的所有变量和函数都属于局部对象 }()); 在javascript中以function开头的语句通常是函数声明。加上了外面的括号&#xff08;黄色背景&#xff09;后则创建的是函数表达式。 蓝色背景括号则是将对象传给这个匿名函数&#xff0c;使该对象有权限访问这个匿名函…

深度优化LNMP之Nginx [1]

Nginx基本安全优化 1.调整参数隐藏Nginx版本号信息一般来说&#xff0c;软件的漏洞都和版本有关&#xff0c;因此我们应尽量隐藏或清除Web服务队访问的用户显示各类敏感信息&#xff08;例如&#xff1a;Web软件名称及版本号等信息&#xff09;&#xff0c;这样恶意的用户就很难…

5阶无向完全图_运动轿跑风 全新上汽名爵5预告图发布

【太平洋汽车网 新车频道】近日&#xff0c;上汽名爵官方发布了一组全新一代名爵5&#xff08;询底价|查参配&#xff09;的预告图。从图片可以看出&#xff0c;换代而来的全新名爵5采用最新的家族化设计语言&#xff0c;外观风格与新款名爵6较为接近&#xff0c;采用轿跑式溜背…

Android 4.1新增功能特性

原文链接&#xff1a;http://android.eoe.cn/topic/summary * Andr​​oid 4.1致开发人员* http://developer.android.com/images/jb-android-4.1.png 欢迎使用Android 4.1&#xff0c;糖豆&#xff01; Andr​​oid 4.1是目前最快最流畅的版本。我们已经改进了整个平台的,为用…

Shell 企业29道面试题 [转]

企业面试题1&#xff1a;&#xff08;生产实战案例&#xff09;&#xff1a;监控MySQL主从同步是否异常&#xff0c;如果异常&#xff0c;则发送短信或者邮件给管理员。提示&#xff1a;如果没主从同步环境,可以用下面文本放到文件里读取来模拟&#xff1a; 阶段1&#xff1a;开…

sqlserver查询补全时间_mssql 按日期分组(group by)查询统计的时候,没有数据补0的解决办法...

摘要:下文讲述一次报表制作的需求&#xff0c;需制作一个月的销量的数据汇总&#xff0c;如果其中某一天没有数据&#xff0c;那么就补0处理例:/*统计2018-4月份的销量统计&#xff0c;无数据的天补0*/---建立基础数据create table saleInfo(dateInfo datetime,qty int )goinse…

ASP.NET MVC 4 小项目开发总结

项目很小&#xff0c;就是一个企业站的前后台&#xff0c;主要包括新闻模块、产品模块、视频模块、留言。没有什么技术上的难点&#xff0c;大部分就是CRUD操作。开始之前评估开发时间为4天&#xff0c;实际coding时间为3天&#xff0c;debug时间为2天&#xff0c;关于debug时间…

深度优化LNMP之Nginx [2]

配置Nginx gzip 压缩实现性能优化 1.Nginx gzip压缩功能介绍 Nginx gzuo压缩模块提供了压缩文件内容的功能&#xff0c;用户请求的内容在发送出用客户端之前&#xff0c;Nginx服务器会根据一些具体的策略实施压缩&#xff0c;以节约网站出口带宽&#xff0c;同时加快了数据传…

go int 转切片_一文掌握GO语言实战技能(二)

Go 数组Go 切片Go 变量和内存地址Go Map 类型Go 面向对象编程Go 方法的定义GO 数组数组是同一类型的元素集合。Go中的数组下标从0开始&#xff0c;因此长度为n的数组下标范围是[0, n-1]。整数数组中元素默认初始化为0&#xff0c;字符串数组中的元素默认初始化为""。…

Swing

1 历史 1.1 SUN Jdk1.1 AWT ,控件很少&#xff0c;不方便应用程序开发 1.2 java 1.2 Swing 基于 Awt 的绘图功能能重绘的界面组件&#xff0c;提供了极其吩咐的控件 a&#xff1a;性能慢   b&#xff1a;结构优秀&#xff08;mvc&#xff09; c&#xff1a;实际应用很少 1.3 …

Shell 脚本调试

Shell 脚本调试 1、学习脚本开发规范2、好的编码习惯提示&#xff1a;脚本不是你写的或者windows下开发的脚本&#xff0c;你检查脚本明明没有问题&#xff0c;但就是执行出现错误&#xff0c;要想到执行dos2unix格式化下。好习惯&#xff1a;每次写脚本都执行dos2unix格式化下…

设置固定长度_加气块砌筑(构造柱、圈梁设置)技术交底21条

墙体砌筑技术交底我给下发21条&#xff0c;内容不全&#xff0c;砌筑的墙体观感差&#xff0c;欢迎大家提出宝贵意见1、填充墙的材料、平面位置尺寸见建筑施工图纸&#xff0c;不得随意更改。2、当首层填充墙下无基础梁或结构梁板时&#xff0c;墙下应做基础&#xff0c;基础作…

网页设计表格单元格线条及边框设置

本文关键字&#xff1a;网页,表格,设置 灵活的在网页设计中使用单元格线条及边框&#xff0c;可以大幅提高网页开发的效率&#xff0c;下面我们就来实际分析一下。 图1 网页中的单元格线条示范 其实上面的三个表格都有三行三列&#xff0c;隐藏分隔线的诀窍在于rules&#…

深度优化LNMP之MySQL

MySQL数据库优化框架体系 1.硬件层面优化 2.操作系统层面优化 3.MySQL数据库层面优化 4.MySQL安全优化 5.网站集群架构上的优化 6.MySQL流程、制度控制优化 硬件层面优化 1、数据库物理机采购 CPU&#xff1a; 64位CPU&#xff0c;一台机器2-16颗CPU。至少2-4颗&#xff0…

element vue 纵向滑动条_Vue 部分

1、ES6Vue &#xff1a;1、Vue 是一套用于构建用户界面的渐进式框架。与其它大型框架不同的是&#xff0c;Vue 被设计为可以自底向上逐层应用。Vue 的核心库只关注视图层&#xff0c;不仅易于上手&#xff0c;还便于与第三方库或既有项目整合。另一方面&#xff0c;当与现代化的…