`
baobeituping
  • 浏览: 1070803 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
社区版块
存档分类
最新评论

Spring.net(AOP通过配置文件配置)

    博客分类:
  • .NET
阅读更多

上篇我学习了Spring.NET的四种通知类型,AOP的实现方案比较复杂,是通过代码实现的。而Spring.NET框架给我们提供了配置的方式来实现AOP的功能。到目前为止,我们已经讨论过使用ProxyFactoryObject或其它类似的工厂对象显式创建AOP代理的方法。如果应用程序需要创建很多AOP代理,比如当需要代理某个服务层的所有对象时,这种方法就会使配置文件变的相当庞大。为简化配置过程,Spring.NET提供了“自动代理”的功能,可以根据条件自动创建代理对象,也就是说,可以将多个对象分组以作为要代理的候选对象。自动代理使用起来比较简单和方便。我仔细分析了一下,提供的几种配置差异主要在于切入点的方式不同。目前我实现了三种切入点的配置方式。

  首先我们先来看一下准备环境。  


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->    public class AroundAdvice : IMethodInterceptor
    
{
        
public object Invoke(IMethodInvocation invocation)
        
{
            Console.WriteLine(
"开始:  " + invocation.TargetType.Name + "." + invocation.Method.Name);
            
object result = invocation.Proceed();
            Console.WriteLine(
"结束:  " + invocation.TargetType.Name + "." + invocation.Method.Name);
            
return result;
        }

    }

  


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->    public interface IService
    
{
        IList FindAll();

        
void Save(object entity);
    }


    
public class CategoryService : IService
    
{
        
public IList FindAll()
        
{
            
return new ArrayList();
        }


        
public void Save(object entity)
        
{
            Console.WriteLine(
"保存:" + entity);
        }

    }


    
public class ProductService : IService
    
{
        
public IList FindAll()
        
{
            
return new ArrayList();
        }


        
public void Save(object entity)
        
{
            Console.WriteLine(
"保存:" + entity);
        }

    }

 

  一、对象名称切入点ObjectNameAutoProxyCreator  

  ObjectNameAutoProxyCreator用特定的文本值或通配符匹配目标对象的名称,并为满足条件的目标对象创建AOP代理。该类支持模式匹配字符串,如:"*name","name*",”*name*和精确文本如"name"我们可以通过下面这个简单的例子了解一下自动代理的功能。

 


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->      <object id="ProxyCreator" type="Spring.Aop.Framework.AutoProxy.ObjectNameAutoProxyCreator, Spring.Aop">
        
<property name="ObjectNames">
          
<list>
            
<value>*Service</value>//注意在这里通配的是你CS文件的名字,而不是你的方法名。我搞了半天。。。
          
</list>
        
</property>
        
<property name="InterceptorNames">
          
<list>
            
<value>aroundAdvice</value>
          
</list>
        
</property>
      
</object>

      
<object id="aroundAdvice" type="Common.AroundAdvice, Common"/>
      
      
<object id="categoryService" type="Service.ProductService, Service"/>
      
<object id="productService" type="Service.ProductService, Service"/>

 


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->class Program
    
{
        
static void Main(string[] args)
        
{
            IApplicationContext ctx 
= ContextRegistry.GetContext();
            IDictionary speakerDictionary 
= ctx.GetObjectsOfType(typeof(IService));
//只要你调用以Service开头的类。那么就会被拦截
            
foreach (DictionaryEntry entry in speakerDictionary)
            
{
                
string name = (string)entry.Key;
                IService service 
= (IService)entry.Value;
                Console.WriteLine(name 
+ " 拦截: ");

                service.FindAll();

                Console.WriteLine();

                service.Save(
"数据");

                Console.WriteLine();
            }



            Console.ReadLine();
        }

    }

 

  输出效果:图1
图1

 

  

运用以上方法有个缺点就是只能控制到对类级别的控制,不能细分到方法级别,如下方式就可以细分到方法级别。

 

 

使用ObjectNameAutoProxyCreator经常需要对要拦截的方法进行筛选,这时我用到Spring.Aop.Support.NameMatchMethodPointcutAdvisor,稍微修改一下配置:


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->      <object id="ProxyCreator" type="Spring.Aop.Framework.AutoProxy.ObjectNameAutoProxyCreator, Spring.Aop">
        
<property name="ObjectNames">
          
<list>
            
<value>*Service</value>
          
</list>
        
</property>
        
<property name="InterceptorNames">
          
<list>
            
<value>aroundAdvisor</value>
          
</list>
        
</property>
      
</object>

      
<object id="aroundAdvisor" type="Spring.Aop.Support.NameMatchMethodPointcutAdvisor, Spring.Aop">
        
<property name="Advice" ref="aroundAdvice"/>
        
<property name="MappedNames">
          
<list>
            
<value>Find*</value>
          
</list>
        
</property>
      
</object>

      
<object id="aroundAdvice" type="Common.AroundAdvice, Common"/>


  输出效果:图2
图2

  MappedNames的配置为:Find*,因此能够拦截到FindAll方法。

  二、正则表达式切入点RegularExpressionMethodPointcutAdvisorSdkRegularExpressionMethodPointcut
  DefaultAdvisorAutoProxyCreator类会在当前容器中自动应用满足条件的Advisor,而不用在自动代理Advisor的对象定义中包含特定的对象名。它既可以保持配置文件的一致性,又可避免ObjectNameAutoProxyCreator引起的配置文件的臃肿。

  先来说RegularExpressionMethodPointcutAdvisor。


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->      <object id="aroundAdvisor" type="Spring.Aop.Support.RegularExpressionMethodPointcutAdvisor, Spring.Aop">
        
<property name="advice" ref="aroundAdvice"/>
        
<property name="patterns">
          
<list>
            
<value>.*Find*.*</value>
          
</list>
        
</property>
      
</object>

      
<!--必须让Spring.NET容器管理DefaultAdvisorAutoProxyCreator类-->
      
<object id="ProxyCreator" type="Spring.Aop.Framework.AutoProxy.DefaultAdvisorAutoProxyCreator, Spring.Aop"/>

      
<object id="aroundAdvice" type="Common.AroundAdvice, Common"/>

      
      
<object id="categoryService" type="Service.ProductService, Service"/>
      
<object id="productService" type="Service.ProductService, Service"/>

 

输出效果:图3
图3

  以上配置相对复杂一点。使用SdkRegularExpressionMethodPointcut的配置就相对简单的多,而项目中SdkRegularExpressionMethodPointcut也经常用到
  SdkRegularExpressionMethodPointcut只需要简单的配置一下通知和切入点就完成了。


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->      <object id="advisor" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
        
<property name="pattern" value="Service.*"/>
      
</object>

      
<aop:config>
        
<aop:advisor pointcut-ref="advisor" advice-ref="aroundAdvice"/>
      
</aop:config>

      
<object id="aroundAdvice" type="Common.AroundAdvice, Common"/>

      
<object id="categoryService" type="Service.ProductService, Service"/>
      
<object id="productService" type="Service.ProductService, Service"/>

 

输出效果:图4

图4

 

  pattern属性为拦截表达式。Service.*的意思是,拦截Service命名空间下(包括子空间)的所有类。如果改为Service.*.Find*",意思为拦截Service命名空间下(包括子空间)的所有类以Find开头的方法或Service命名空间下以Find开头的所有类
输出效果:图5

图5

 

  三、属性切入点AttributeMatchMethodPointcutAdvisor
Spring.NET框架运行开发人员自定义属性,拦截标注带有特定属性的类中的方法。


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->    public class ConsoleDebugAttribute : Attribute
    {

    }

    
public class AttributeService : IService
    {
        [ConsoleDebug]
        
public IList FindAll()
        {
            
return new ArrayList();
        }

        
public void Save(object entity)
        {
            Console.WriteLine(
"保存:" + entity);
        }
    }

 


<!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />-->      <object id="aroundAdvisor" type="Spring.Aop.Support.AttributeMatchMethodPointcutAdvisor, Spring.Aop">
        
<property name="Advice" ref="aroundAdvice"/>
        
<property name="Attribute"
                  value
="ConfigAttribute.Attributes.ConsoleDebugAttribute, ConfigAttribute" />
      
</object>
      
      
<object id="proxyFactoryObject" type="Spring.Aop.Framework.ProxyFactoryObject">
        
<property name="Target">
          
<object type="ConfigAttribute.Service.AttributeService, ConfigAttribute" />
        
</property>
        
<property name="InterceptorNames">
          
<list>
            
<value>aroundAdvisor</value>
          
</list>
        
</property>
      
</object>

      
<object id="aroundAdvice" type="Common.AroundAdvice, Common"/>

 

  输出效果:图6

分享到:
评论

相关推荐

    Spring.net Aop 例子

    - **配置文件**:通常为XML文件,用于定义Spring.NET容器的配置,包括AOP相关的设置,如定义切面、切入点表达式、通知类型(前置通知、后置通知、环绕通知等)和代理类型。 - **切面类**:定义了切面逻辑,通常包含...

    spring.net结合三层AOP异常日志记录功能

    5. **配置Spring.NET**:在Spring.NET的XML配置文件中,我们需要定义切入点表达式(Pointcut Expression),指出哪些方法应该被拦截,以及相应的通知(Advice)应该如何执行。这通常涉及到对`&lt;aop:config&gt;`、`&lt;aop:...

    (Spring.net).dll文件

    通过配置文件或者编程方式,开发者可以轻松地配置IoC容器和AOP规则,实现应用程序的松耦合和模块化。 总的来说,Spring.NET是一个全面的.NET开发框架,不仅提供了依赖注入和面向切面编程的工具,还涵盖了数据访问、...

    spring.net demo全

    1. **配置文件**:Spring.NET通常使用XML配置文件来定义bean及其依赖关系。在这个例子中,你将看到如何在XML中定义bean的实例化逻辑、属性注入和初始化方法。 2. **依赖注入的实现**:在代码中,你可以学习如何使用...

    Spring.NET框架的安装文件(Spring.NET-1.3.1.40711.exe)

    4. **Config** 目录:可能包含了一些配置文件示例,展示了如何配置Spring.NET的IoC容器和AOP框架。 5. **License** 文件:包含了软件的许可协议,用户在安装前需同意该协议。 安装Spring.NET的步骤一般如下: 1. ...

    Spring.NET框架参考文档

    10. **配置与元数据**:Spring.NET使用XML或基于属性的配置文件来定义对象及其依赖关系,也可以利用.NET的特性元数据来声明依赖。这使得配置灵活且易于理解。 通过深入学习“Spring.NET框架参考文档”,你可以全面...

    Spring.Net2.0.1+Nhibernate4

    lib目录中的文件很可能是Spring.NET和NHibernate的库文件,包括DLLs和可能的配置文件。确保正确引用这些库,并根据项目需求调整配置,以便成功整合Spring.NET2.0.1和NHibernate4。 总的来说,Spring.NET2.0.1与...

    Spring.Net_2.0.0以及中文参考文档

    DI可以通过XML配置文件或者使用特性(Attributes)进行设置。 2. **面向方面编程**:Spring.NET的AOP模块提供了切面(Aspects)和通知(Advice)的概念,使得可以跨多个对象和方法实现关注点的分离,如日志记录、...

    Spring.Net结合NHibernate完整代码

    在Spring.NET配置文件中,通常会定义一个SessionFactoryBean,配置数据库连接信息、映射文件路径等,然后在需要的地方通过依赖注入获取SessionFactory实例。 接着,Spring.NET可以进一步管理NHibernate的Session...

    Spring.Net的实例

    在"SpringTest"这个例子中,可能包含了一些使用Spring.NET编写的示例代码,比如配置文件、控制器、服务接口及其实现、DAO层的代码等。通过分析和运行这些示例,你可以更好地理解Spring.NET如何在实际项目中工作,...

    Spring.net框架

    - **案例**:虽然文中对AOP的介绍较少,但提到了Spring.NET的AOP功能,可以通过配置拦截器(Interceptor)实现方法调用前后的额外处理,如日志记录。在不修改原有业务代码的前提下,通过AOP可以方便地添加或修改横...

    最新Spring.NET 指南

    - **容器配置**:通过XML或.NET配置文件定制Spring.NET容器。 - **对象定义继承**:允许子对象继承父对象的配置。 #### 五、总结 Spring.NET是一个强大的.NET框架,它通过依赖注入、面向切面编程等技术简化了应用...

    spring .net学习 完整 demo three

    开发者可以通过配置文件或代码来定义对象及其依赖关系,Spring.NET负责创建和管理这些对象。 2. **IoC容器**:IoC(Inversion of Control)容器是Spring.NET的核心,它负责实例化、配置和组装应用程序中的对象。...

    Spring.NET-1.3.2

    9. **配置和容器**:Spring.NET通过XML或基于属性的配置文件来管理对象的生命周期和依赖关系。Spring容器负责创建、初始化和管理对象,是整个框架的基石。 10. **IoC容器**:IoC(Inversion of Control)是Spring...

    spring.net整合webservice实例

    然后,在Spring.NET的配置文件(如App.config或Web.config)中,我们可以定义一个`WebServiceProxyFactoryBean`,设置其`Url`属性为Web服务的地址,并指定代理类。例如: ```xml &lt;object id="myWebService" type="...

    spring.net_ibatis.net_mysq

    1. 首先,在Spring.NET的配置文件中,配置iBatis.NET的SqlMap,并声明DAO接口及其实现类。 2. 在iBatis.NET的配置文件中,编写对应的SQL映射语句。 3. 在业务逻辑中,通过Spring.NET的IoC容器获取DAO的实例,然后...

    spring.net和log4net最基本例子

    Spring.NET可以通过配置文件声明Log4Net作为依赖,并在需要的地方注入,这样就可以在不直接引用Log4Net的情况下使用日志服务。 例如,你可以创建一个ILog接口,然后在Spring.NET配置文件中定义一个...

    可以运行的Spring.net例子

    1. **配置文件**:Spring.NET通常使用XML配置文件来定义对象、它们的依赖关系以及容器的行为。文件名可能为`App.config`或`Spring.config`,其中包含了Bean定义,这些Bean将在运行时被实例化。 2. **IoC容器初始化*...

    Spring.net 2.0及中文api下载

    1. **依赖注入**:Spring.NET的核心功能之一是依赖注入,它允许开发者通过配置来管理对象间的依赖关系,而不是硬编码这些依赖。这使得代码更易于测试、维护和解耦。 2. **容器**:Spring.NET提供了一个容器,用于...

Global site tag (gtag.js) - Google Analytics