gpt4 book ai didi

dependency-injection - 是否可以将依赖注入(inject)与 Umbraco 7 ContentService 事件处理程序一起使用?

转载 作者:行者123 更新时间:2023-12-03 22:53:39 24 4
gpt4 key购买 nike

我将 Umbraco 7.1.1 与 MVC 项目一起使用,并且我已将其配置为使用依赖项注入(inject)(在我的例子中是 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 为空,因为我的依赖注入(inject)框架配置不正确,或者(正如我怀疑的那样)从未被调用。

如果我依赖对总线的静态引用,我可以让它工作,但如果可以的话,我宁愿避免这种情况。我正在尝试做的事情可能吗?即对这些 Umbraco 事件使用依赖注入(inject)?如果是这样,我需要什么配置来告诉 Umbraco 使用 CaSTLe.Windsor 来创建我的事件处理程序?

最佳答案

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

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 中使用依赖注入(inject)的更多信息,请参阅 https://web.archive.org/web/20160325201135/http://www.wearesicc.com/getting-started-with-umbraco-7-and-structuremap-v3/

关于dependency-injection - 是否可以将依赖注入(inject)与 Umbraco 7 ContentService 事件处理程序一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24048127/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com