使用xml / app.config

时间:2015-08-03 09:23:51

标签: castle-windsor castle xml-configuration

我目前正在使用Castle Windsor构建示例应用程序。我们的座右铭是使用xml / app.config来打开/关闭方法拦截。我之前使用过Fluent API,它起到了魅力作用。下一步,我试图用我的xml替换流畅的API。

代码的要点如下: 一个名为RandomOperations的类,有两个虚方法。 一个实现IInterceptor的LoggingAspect类。 一个MyInterceptorsSelector类,它实现了IModelInterceptorsSelector 一个Program.cs,它具有较早的流畅api语法,现在只用于调用RandomOperations类的方法。 一个名为app.config的部分,其中包含注册组件的xml语法。

当我使用流畅的api时,我能够拦截方法调用,但是我无法使用xml / app.config注册来执行此操作。有人可以对错过的内容进行一些说明吗?

课程如下:

RandomOperations.cs

public class RandomOperations 
    {
        public virtual int MyRandomMethod(int x)
        {
            return x * x;
        }

        public virtual void Writer(string x)
        {
            Console.WriteLine(x);
        }
    }

LoggingAspect.cs

public class LoggingAspect : IInterceptor
    {
        public void Intercept(IInvocation invocation)
        {
            Console.WriteLine("Intercepted the call to " + invocation.Method.Name);
            invocation.Proceed();
            Console.WriteLine("After the method call, the return value is " + invocation.ReturnValue);
        }
    }

MyInterceptorsSelector.cs

public class MyInterceptorsSelector : IModelInterceptorsSelector
    {

        public bool HasInterceptors(ComponentModel model)
        {
            return typeof(LoggingAspect) != model.Implementation &&
                model.Implementation.Namespace.StartsWith("ConsoleApplication1") ;
        }

        public InterceptorReference[] SelectInterceptors(ComponentModel model, Castle.Core.InterceptorReference[] obj)
        {
            var interceptors = new List<InterceptorReference>(model.Interceptors.Count + 1);
            foreach (InterceptorReference inter in model.Interceptors)
            {
                interceptors.Add(inter);
            }

            return interceptors.ToArray();

        }
    }

主要在Program.cs

static void Main(string[] args)
        {
            var container = new WindsorContainer();
            //container.Register(Component.For<RandomOperations>().Interceptors(typeof(LoggingAspect)));
            //container.Register(Component.For<LoggingAspect>());
            //container.Kernel.ProxyFactory.AddInterceptorSelector(new MyInterceptorsSelector());
            var service = container.Resolve<RandomOperations>();
            service.MyRandomMethod(4);
            service.Writer("Hello, World");
        }

删除注释掉的流畅api语法使应用程序正常工作。

的App.config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="castle" type="Castle.Windsor.Configuration.AppDomain.CastleSectionHandler, Castle.Windsor" />
  </configSections>

  <castle>
    <components>

      <component id="MyInterceptorsSelector" type="MyInterceptorsSelector"/>
      <component
        id="LoggingAspect"
        type="ConsoleApplication1.LoggingAspect, ConsoleApplication1">
      </component>
      <component
        type="ConsoleApplication1.RandomOperations, ConsoleApplication1">
        <interceptors selector="${MyInterceptorsSelector}">
          <interceptor>${LoggingAspect}</interceptor>
        </interceptors>
      </component>

    </components>
  </castle>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  </startup>

</configuration>

提前致谢。

1 个答案:

答案 0 :(得分:4)

您需要将IConfigurationInterpreter传递给您的Windsor构造函数。变化:

var container = new WindsorContainer();

要:

var container = new WindsorContainer(new XmlInterpreter());

XmlInterpreter(没有参数)将从app.config / web.config中提取配置。

有关使用IConfigurationInterpreter的更多选项,请参阅docs