• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

避免在ASP.NETCore中使用服务定位器模式

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

(此文章同时发表在本人微信公众号“dotNET每日精华文章”,欢迎右边二维码来关注。)

题记:服务定位器(Service Locator)作为一种反模式,一般情况下应该避免使用,在ASP.NET Core更是需要如此。

Scott Allen在其博客网站上发表了一篇名为“Avoiding the Service Locator Pattern in ASP.NET Core”的文章解释了这一模式会带来的问题:导致应用程序无法完全基于控制反转(依赖注入)容器。同时给出了在各种情况下的替代方案。

虽然可以把ASP.NET Core中提供的HttpContext.ApplicationServices或HttpContext.ReqeustServices作为服务定位器使用(如下代码片段),但是应该避免这样使用。

var provider = HttpContext.ApplicationServices;
var someService = provider.GetService(typeof(ISomeService));

在启动的时候,注入自己的服务:

public class Startup
{
    public void ConfigureServices(IServiceCollection services) { }
  
    public void Configure(IApplicationBuilder app,
                          IAmACustomService customService)
    {
        // ....   
    }        
}

在中间件中有两个地方可以注入服务(构造器和Invoke方法):

public class TestMiddleware
{
    public TestMiddleware(RequestDelegate next, IAmACustomService service)
    {
        // ...
    }
 
    public async Task Invoke(HttpContext context, IAmACustomService service)
    {
        // ...
    }    
}

在控制器中可以在构造器中注入服务:

public class HelloController : Controller
{
    private readonly IAmACustomService _customService;
 
    public HelloController(IAmACustomService customService)
    {
        _customService = customService;
    }
 
    public IActionResult Get()
    {
        // ...
    }
}

在控制器的操作方法中可以利用[FromServices]标记注入服务:

[HttpGet("[action]")]
public IActionResult Index([FromServices] IAmACustomService service)
{            
    // ...
}

在模型中同样可以利用[FromServices]:

public class TestModel
{       
    public string Name { get; set; }
 
    [FromServices]
    public IAmACustomService CustomService { get; set; }
}

在视图中可以利用@inject声明来注入服务:

@inject IAmACustomService CustomService;
  
<div>
    Blarg   
</div>

其实在所有其他地方甚至过滤器中都可以充分利用依赖注入,可以参考:Action Filters, Service Filters, and Type Filtershttp://www.strathweb.com/2015/06/action-filters-service-filters-type-filters-asp-net-5-mvc-6/)。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap