我正在学习使用Ninject和Interceptor模式。
我有以下拦截器。
public class MyInterceptor:IInterceptor
{
public void Intercept(IInvocation invocation)
{
Console.WriteLine("Pre Execute: " + invocation.Request.Method.Name);
foreach (var param in invocation.Request.Arguments)
{
Console.WriteLine("param : " + param);
}
invocation.Proceed();
Console.WriteLine("Post Execute: " + invocation.Request.Method.Name);
Console.WriteLine("Returned: " + invocation.ReturnValue);
}
}
并且有一个名为MyClass
的类,它除了两个简单的方法外什么都没有,虚拟的方法允许拦截器处理它们。(两种方法是Echo和double,顾名思义。)
我通过NuGet将Ninject、Ninject.Extensions.Interception和Ninject.EExtensions.Iinterception.DynamicProxy添加到我的项目中。
添加了以下using
语句。
using Ninject;
using Ninject.Extensions.Interception.Infrastructure.Language;
using Ninject.Extensions.Interception;
我的Main方法,它进行引导,看起来是这样的。
static void Main(string[] args)
{
MyClass o = null;
using (IKernel kernel = new StandardKernel())
{
kernel.Bind<MyClass>().ToSelf().Intercept().With(new MyInterceptor());
o = kernel.Get<MyClass>();
}
o.Echo("Hello World!"); // Error
o.Double(5);
}
我在指定的行收到以下错误。
Error loading Ninject component IProxyRequestFactory
No such component has been registered in the kernel's component container.
Suggestions:
1) If you have created a custom subclass for KernelBase, ensure that you have properly
implemented the AddComponents() method.
2) Ensure that you have not removed the component from the container via a call to RemoveAll().
3) Ensure you have not accidentally created more than one kernel..
有人能告诉我我做错了什么吗?
好吧,我终于能够复制了(忘记了将MyClass方法虚拟化)。我解决这个问题的方法是从内核周围删除using块:
static void Main(string[] args)
{
MyClass o = null;
var kernel = new StandardKernel();
kernel.Bind<MyClass>().ToSelf().Intercept().With(new MyInterceptor());
o = kernel.Get<MyClass>();
o.Echo("Hello World!"); // Error
o.Double(5);
Console.ReadKey(true);
}
我之所以猜测这是有效的,是因为它为MyClass
创建了一个代理类,并以某种方式将IKernel
传递给代理。当您调用该方法(在代理上)时,它会返回内核并解析一些额外的依赖项(包括IProxyRequestFactory
)。由于您正在处理它,它无法再解决该依赖关系。