我将 Umbraco 7.1.1 与 MVC 项目一起使用,并且我已将其配置为使用依赖注入(在我的情况下为 Castle.Windsor)。我也在使用 NServiceBus 发送消息等,它工作得很好。
我现在正在尝试挂钩 ContentService Published 事件 - 尝试发布 NServiceBus 事件以提醒其他服务内容已更改。我想做的是这样的:
public class ContentPublishedEventHandler : ApplicationEventHandler
{
public IBus Bus { get; set; }
public ContentPublishedEventHandler()
{
ContentService.Published += ContentServiceOnPublished;
}
private void ContentServiceOnPublished(IPublishingStrategy sender, PublishEventArgs<IContent> publishEventArgs)
{
Bus.Publish<ContentUpdatedEvent>(e =>
{
e.UpdatedNodeIds = publishEventArgs.PublishedEntities.Select(c => c.Id);
});
}
}
但在这种情况下,Bus
是 null 因为我的依赖注入框架配置不正确,或者(我怀疑)从未调用过。
如果我依赖对总线的静态引用,我可以让它工作,但如果可以的话,我宁愿避免这种情况。我正在尝试做的事情可能吗?即对这些 Umbraco 事件使用依赖注入?如果是这样,我需要什么配置来告诉 Umbraco 使用 Castle.Windsor 来创建我的事件处理程序?