我正在尝试将 EasyNetQ 与 Ninject 一起使用来记录消息。
我已经设法将 Ninject 设置为 EasyNetQ DI(我认为),但是当消息到达没有无参数构造函数的处理程序时(例如,我需要在其中绑定存储库),它无法解析。或者至少我认为这是问题所在,因为我在控制台上遇到了一个非常普遍的错误。
我告诉 EasyNetQ 像这样使用 Ninject:
RabbitHutch.SetContainerFactory(() => new NinjectAdapter(container));
我想这就是我设置它所需要的。Ninject 适配器是来自 EasyNetQ 的适配器。
我的处理程序如下所示:
public class ProfileDeactivatedUpdateHandler : IConsume<ProfileDeactivatedUpdate>
{
private readonly IProfileRepository _profileRepository;
public ProfileDeactivatedUpdateHandler(IProfileRepository profileRepository)
{
_profileRepository = profileRepository;
}
public void Consume(ProfileDeactivatedUpdate message)
{
//Do Stuff.
}
}
如果我添加了一个无参数的构造函数,而是将 Ninject 设置为可通过 ServiceLocator (Ugh) 使用,那么它就可以工作。处理程序调用正常,我可以通过 ServiceLocator 找到我的存储库,所以我知道至少 Ninject 知道存储库。
尝试处理消息时弹出的错误是。
System.AggregateException: One or more errors occurred. ---> System.Exception: E
xception of type 'System.Exception' was thrown.
at EasyNetQ.ReflectionHelpers.DefaultFactories`1.Get()
at EasyNetQ.ReflectionHelpers.CreateInstance[T]()
at EasyNetQ.AutoSubscribe.DefaultAutoSubscriberMessageDispatcher.Dispatch[TMe
ssage,TConsumer](TMessage message)
at EasyNetQ.RabbitBus.<>c__DisplayClass6`1.<Subscribe>b__5(T msg)
--- End of inner exception stack trace ---
---> (Inner Exception #0) System.Exception: Exception of type 'System.Exception'
was thrown.
at EasyNetQ.ReflectionHelpers.DefaultFactories`1.Get()
at EasyNetQ.ReflectionHelpers.CreateInstance[T]()
at EasyNetQ.AutoSubscribe.DefaultAutoSubscriberMessageDispatcher.Dispatch[TMe
ssage,TConsumer](TMessage message)
at EasyNetQ.RabbitBus.<>c__DisplayClass6`1.<Subscribe>b__5(T msg)<---