3

我将 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 来创建我的事件处理程序?

4

1 回答 1

0

如果您仍在寻找答案,最好在 ContentPublishedEventHandler 构造函数中注入依赖项,因此代码将如下所示:

public class ContentPublishedEventHandler : ApplicationEventHandler
{
    public IBus Bus { get; set; }
    
    public ContentPublishedEventHandler(IBus bus)
    {
        Bus = bus;
    }

    protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext)
    {
        ContentService.Published += ContentServiceOnPublished;

        base.ApplicationStarting(umbracoApplication, applicationContext);
    }
        
    
    private void ContentServiceOnPublished(IPublishingStrategy sender, PublishEventArgs<IContent> publishEventArgs)
    {
        Bus.Publish<ContentUpdatedEvent>(e =>
        {
            e.UpdatedNodeIds = publishEventArgs.PublishedEntities.Select(c => c.Id);
        });
    }
}

如果您正在寻找有关在 Umbraco 7 中使用依赖注入的更多信息,请参阅 https://web.archive.org/web/20160325201135/http://www.wearesicc.com/getting-started-with-umbraco-7 -and-structuremap-v3/

于 2015-03-26T22:35:44.233 回答