2

我试图为我的项目构建良好的架构,我决定使用NinjectDI 并Castle project dinamic proxy为我的存储库添加缓存。不幸的是,我得到了一个例外。这是我的代码:

public class NinjectImplementation : NinjectModule
{
    public override void Load()
    {
        // Binding repositories
        var assembly = Assembly.GetAssembly(typeof(UserRepository));
        var types = assembly.GetTypes()
             .Where(t => t.Name.EndsWith("Repository") && !t.Name.StartsWith("I"));
        ProxyGenerator generator = new ProxyGenerator();
        //CacheInterceptor cacheInterceptor = 
        foreach (var type in types)
        {
            var interfaceType = type.GetInterfaces().Single();
            var typeWithCaching = generator.CreateClassProxy(type, new MyTestShop.Infrastructure.Caching.CacheInterceptor());

            Bind(interfaceType).To(typeWithCaching.GetType()).InThreadScope();
        }
        ...//Service layer injection
    }
}

所以我注入的不是我的存储库的实现,而是存储库的代理类(带有缓存)。

这是我IInterceptor的实现Castle dinamic proxy

[Serializable]
public class CacheInterceptor : IInterceptor
{

    public void Intercept(IInvocation invocation)
    {
        int argumentCount = invocation.Arguments.Length;
        if (argumentCount > 1)
        {
            invocation.Proceed();
            return;
        }
        String methodNameInLower = invocation.Method.Name.ToLower();
        if (methodNameInLower.StartsWith("get"))
        {
            String cachePath = invocation.TargetType.FullName + "_" + invocation.Method.Name + "_" + invocation.Arguments[0].ToString();
            CacheHelper.Get(cachePath);
            //DO SOMETHING
            return;
        }

    }
}

_kernel.Get<T>()我在以下方法中遇到的异常Ninject DI container

  • 使用 IInterceptor Provider 的条件隐式自绑定激活 IInterceptor 时出错,返回 null。*

激活路径: 3)将依赖IInterceptor注入到UserRepositoryProxy类型的构造函数的参数中 2)将依赖IUserRepository注入到UserService类型的构造函数的参数userRepository 1)对IUserService的请求

建议: 1) 确保提供者正确处理创建请求。

说明:执行当前 Web 请求期间发生未处理的异常。请查看堆栈跟踪以获取有关错误及其源自代码的位置的更多信息。

异常详细信息:Ninject.ActivationException:使用 IInterceptor Provider 的条件隐式自绑定激活 IInterceptor 时出错,返回 null。激活路径: 3)将依赖IInterceptor注入到UserRepositoryProxy类型的构造函数的参数中 2)将依赖IUserRepository注入到UserService类型的构造函数的参数userRepository 1)对IUserService的请求

建议: 1) 确保提供者正确处理创建请求。

4

1 回答 1

1

我终于找到了我的问题的答案。问题是我的代理不是类型而是类型的实例,所以我这样修复它:

var interfaceType = type.GetInterfaces().Single();

var proxy = generator.CreateClassProxy(type,
    new Type[] { interfaceType },
    new IInterceptor[]
    {
        new CacheInterceptor(), 
        new LoggingInterceptor()
    });

// I'm using directive ToConstant(..), and not To(..)
Bind(interfaceType).ToConstant(proxy).InThreadScope();
于 2013-03-26T08:50:01.930 回答