I简介

Aspect Oriented Programming(AOP),面向切面编程,是一个比较热门的话题。AOP主要实现的目的是针对业务处理过程中的切面进行提取,它所面对的是处理过程中的某个步骤或阶段,以获得逻辑过程中各部分之间低耦合性的隔离效果。比如我们最常见的就是权限验证,日志记录。

举个例子,我们现在提供例了获取数据的一个方法,但是我们希望并不是所有人都有权限调用。如果按照传统的OOP的实现的话,我们实现了获取数据获取数据,同时为了要进行权限验证的的话,那我们在实现该方法中要添加验证权限的代码。这样的话,假如我们要实现的功能有多个呢?那就要在每个实现的类都添加这些验证权限的代码。这样做的话就会有点繁琐,而且每个实现类都与验证权限的行为紧耦合,违反了面向对象的规则。那么怎样才能把验证权限的行为与业务处理过程中分离出来呢?看起来好像就是获取数据的方法自己在进行,但却是背后权限验证为这些行为进行验证,并且方法调用者都不知道存在这些权限验证过程,这就是我们要讨论AOP的目的所在。AOP的编程,好像就是把我们在某个方面的功能提出来与一批对象进行隔离,这样与一批对象之间降低了耦合性,可以就某个功能进行编程。

II代码实现:

1.        类标签声明

    /// <summary>

    /// 支持权限验证标签

    /// </summary>

    [AttributeUsage(AttributeTargets.Class)]

    public class PermissionCheckAttribute :ContextAttribute

    {

        public PermissionCheckAttribute()

            : base("PermissionCheck")

        { }

        public override voidGetPropertiesForNewContext(IConstructionCallMessage ccm)

        {

            ccm.ContextProperties.Add(newPermissionCheckProperty());

        }

}

2.        验证属性声明   

 public class PermissionCheckProperty :IContextProperty,

       IContributeObjectSink

    {

        #region IContributeObjectSinkimplementation

        public IMessageSinkGetObjectSink(MarshalByRefObject o,

        IMessageSink next)

        {

            return new SecurityAspect(next);

        }

        #endregion // IContributeObjectSinkimplementation

        #region IContextProperty implementation

        // Implement Name, Freeze,IsNewContextOK

        public string Name

        {

            get { return"PermissionCheckProperty"; }

        }

        public void Freeze(Context newContext)

        {

        }

        public bool IsNewContextOK(ContextnewCtx)

        {

            return true;

        }

        #endregion //IContextPropertyimplementation

}

3.        验证属性上下文声明  

  public class PermissionCheckProperty :IContextProperty,

       IContributeObjectSink

    {

        #region IContributeObjectSinkimplementation

        public IMessageSinkGetObjectSink(MarshalByRefObject o,

        IMessageSink next)

        {

            return new SecurityAspect(next);

        }

        #endregion // IContributeObjectSinkimplementation

        #region IContextProperty implementation

        // Implement Name, Freeze,IsNewContextOK

        public string Name

        {

            get { return"PermissionCheckProperty"; }

        }

        public void Freeze(Context newContext)

        {

        }

        public bool IsNewContextOK(ContextnewCtx)

        {

            return true;

        }

        #endregion //IContextProperty implementation

    }

4.        函数标签声明   

 /// <summary>

    /// 功能描述标签类

    /// </summary>

    [AttributeUsage(AttributeTargets.All,AllowMultiple = false, Inherited = true)]

    public class FeatureDescriptionAttribute :Attribute

    {

        /// <summary>

        /// 功能编号

        /// </summary>

        public string Guid { get; set; }

       /// <summary>

       /// 功能描述

       /// </summary>

        public string Description { get; set; }

        public FeatureDescriptionAttribute() {}

        public FeatureDescriptionAttribute(stringname, string description)

        {

            this.Guid = name;

            this.Description = description;

        }

}

5.验证实现具体帮助类

  

  /// <summary>

    /// 权限验证帮助类

    /// </summary>

    public class PowerHelper

    {

        /// <summary>

        /// 权限验证方法实现

        /// </summary>

        /// <param name="guid">功能编号</param>

        /// <paramname="description">功能描述</param>

        public static voidPermissionCheck(string guid, string description)

        {

            //TODO:此处查询数据库,做权限验证

            if (guid =="04C4DFC7-9EDD-4A5D-9029-3EDCD5977163")

            {

                //拥有权限,正常   

                MessageBox.Show("权限检测通过");

            }

            else

            {

                //没有权限

                throw newUnauthorizedAccessException("访问被拒绝,当前用户不具有操作此功能的权限!");

            }

        }

}

III具体使用例子

1.        功能函数声明 

 [PermissionCheck]

    public class ControlDemoApi :ContextBoundObject

    {

        [FeatureDescription("04C4DFC7-9EDD-4A5D-9029-3EDCD5977163","功能1")]

        public void Function1()

        {

            MessageBox.Show("成功的执行了功能1!");

        }

       [FeatureDescription("2FCFA71B-D492-4F88-8A75-985AC70BA161","功能2")]

        public void Function2()

        {

          MessageBox.Show("成功的执行了功能2!");

        }

}

2.调用功能函数  

 ControlDemoApi apiDemo =new ControlDemoApi();

  apiDemo.Function1();

apiDemo. Function2();

3.说明

如2中描述,在执行apiDemo. Function1();之前会自动调用验证实现具体帮助类中的PermissionCheck(string guid, string description)方法。执行结果为 首先弹出消息权限检测通过,然后弹出消息 成功的执行了功能1!

如2中描述,在执行apiDemo. Function2 ();之前会自动调用验证实现具体帮助类中的PermissionCheck(stringguid, string description)方法。执行结果为 访问被拒绝,抛出异常 当前用户不具有操作此功能的权限!

Aspect Oriented Programming面向切面编程的更多相关文章

  1. Java实战之03Spring-03Spring的核心之AOP(Aspect Oriented Programming 面向切面编程)

    三.Spring的核心之AOP(Aspect Oriented Programming 面向切面编程) 1.AOP概念及原理 1.1.什么是AOP OOP:Object Oriented Progra ...

  2. Aspect Oriented Programming

    AOP(Aspect Oriented Programming),面向切面编程(也叫面向方面)是目前软件开发中的一个热点.利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度 ...

  3. Java笔记——面向切面编程(AOP模式)

    原文:http://www.cnblogs.com/yanbincn/archive/2012/06/01/2530377.html Aspect Oriented Programming  面向切面 ...

  4. Spring(三)--AOP【面向切面编程】、通知类型及使用、切入点表达式

    1.概念:Aspect Oriented Programming 面向切面编程 在方法的前后添加方法   2.作用:本质上来说是一种简化代码的方式      继承机制      封装方法      动 ...

  5. Spring AOP(面向切面编程)

    一.AOP简介 1.AOP概念:Aspect Oriented Programming 面向切面编程 2.作用:本质上来说是一种简化代码的方式 继承机制 封装方法 动态代理 …… 3.情景举例 ①数学 ...

  6. Spring AOP 面向切面编程相关注解

    Aspect Oriented Programming 面向切面编程   在Spring中使用这些面向切面相关的注解可以结合使用aspectJ,aspectJ是专门搞动态代理技术的,所以比较专业.   ...

  7. Spring详解篇之 AOP面向切面编程

    一.概述 Aop(aspect oriented programming面向切面编程),是spring框架的另一个特征.AOP包括切面.连接点.通知(advice).切入点(pointCut) . 1 ...

  8. AOP面向切面编程笔记

    1.AOP概念:Aspect Oriented Programming 面向切面编程 2.作用:本质上来说是一种简化代码的方式 继承机制 封装方法 动态代理 …… 3.情景举例 ①数学计算器接口[Ma ...

  9. java aop面向切面编程

    最近一直在学java的spring boot,一直没有弄明白aop面向切面编程是什么意思.看到一篇文章写得很清楚,终于弄明白了,原来跟python的装饰器一样的效果.http://www.cnblog ...

随机推荐

  1. [RxJS] Split an RxJS observable conditionally with windowToggle

    There are variants of the window operator that allow you to split RxJS observables in different ways ...

  2. php实现栈的压入、弹出序列(**)(算法步骤)(画图)

    php实现栈的压入.弹出序列(**)(算法步骤)(画图) 一.总结 1.算法步骤:一定要把算法步骤写下来,要不然太浪费时间了,尤其是思维不清晰的时候,尤其是题目有难度的时候,不然的话也非常容易出现低级 ...

  3. B/S系统的前台和后台数据转递机制探究

    作者:朱金灿 来源:http://blog.csdn.net/clever101 说实话写这篇文章超出了我的能力范围之外(因为我并没有多少Web开发经验),我所期待的是能起一个抛砖引玉的作用--希望高 ...

  4. java完美equals方法代码段

    public boolean equals(Object otherObject) { if(this == otherObject) { // 检測this与otherObject是否引用同一个对象 ...

  5. [.NET Core 32]升级vs code之后,vs code无法调试net core web项目

    错误提示&处理方法 参考链接:https://github.com/OmniSharp/omnisharp-vscode/issues/1742 错误:The .NET Core debugg ...

  6. 每天一个JavaScript实例-检測表单数据

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

  7. 对多线程java内存模型JMM

    多线程概念的引入体现了人类重新有效压力寨计算机.这是非常有必要的,由于所涉及的读数据的过程中的一般操作,如从磁盘.其他系统.数据库等,CPU计算速度和数据读取速度已经严重失衡.假设印刷过程中一个线程将 ...

  8. expdp备份速度慢的问题

    --出口分析 --两个时间报表分析,该声明仅出口4,059,292  数据,10之后分钟数据没有继续出口              Snap Id  Snap Time  Sessions  Curs ...

  9. java序列化框架(protobuf、thrift、kryo、fst、fastjson、Jackson、gson、hessian)性能对比

     我们为什么要序列化 举个栗子:下雨天我们要打伞,但是之后我们要把伞折叠起来,方便我们存放.那么运用到我们java中道理是一样的,我们要将数据分解成字节流,以便存储在文件中或在网络上传输,这叫序列 ...

  10. CSS拾遗(二)

    接CSS拾遗(一). 4. 不透明度 opacity: 0.8; filter: alpha(opacity=80); opacity: 0.8是标准的写法:filter: alpha(opacity ...