返回顶部
首页 > 资讯 > 精选 >.NET Core中的HttpClientFactory类怎么用
  • 502
分享到

.NET Core中的HttpClientFactory类怎么用

2023-06-29 16:06:20 502人浏览 安东尼
摘要

小编给大家分享一下.net Core中的HttpClientFactory类怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!一、HttpClient

小编给大家分享一下.net Core中的HttpClientFactory类怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

一、HttpClient使用

C#中,如果我们需要向某特定的URL地址发送Http请求的时候,通常会用到HttpClient类。会将HttpClient包裹在using内部进行声明和初始化,如下面的代码:

using (var httpClient = new HttpClient()){    // 逻辑处理代码}

HttpClient类包含了许多有用的方法,使用上面的代码,可以满足绝大多数的需求,但是如果对其使用不当时,可能会出现意想不到的事情。

上面代码的技术范点:当你使用继承了IDisposable接口的对象时,建议在using代码块中声明和初始化,当using代码段执行完成后,会自动释放该对象而不需要手动进行显示Dispose操作。

对象所占用资源应该确保及时被释放掉,但是,对于网络连接而言,这是错误的。具体原因有下面两点:

  • 网络连接是需要耗费一定时间的,频繁开启与关闭连接,性能会受到影响。

  • 开启网络连接时会占用低层Socket资源,但在HttpClient调用其本身的Dispose方法时,并不能立即释放该资源,这意味着你的程序可能会因为耗尽连接资源而产生预期之外的异常。

看下面一段代码

using System;using System.Collections.Generic;using System.Linq;using System.Net.Http;using System.Text;using System.Threading.Tasks;namespace HttpClientDemo{    class Program    {        static void Main(string[] args)        {            //using (var httpClient = new HttpClient())            //{            //    // 逻辑处理代码            //}            HttpAsync();            Console.WriteLine("Hello World!");            Console.Read();        }        public static async void HttpAsync()        {            for (int i = 0; i < 10; i++)            {                using (var client = new HttpClient())                {                    var result = await client.GetAsync("http://www.baidu.com");                    Console.WriteLine($"{i}:{result.StatusCode}");                }            }        }    }}

 运行项目输出结果后,通过netstate查看下tcp连接情况,会发现连接依然存在,状态为“TIME_WAIT”(继续等待看是否还有延迟的包会传输过来)。

这里就会出现一个坑:在高并发的情况下,连接来不及释放,socket连接被耗尽,耗尽之后就会出现错误。就是会出现“各种套接字问题”。

那么如何解决这个问题呢?比较好的解决方法是延长HttpClient对象的使用寿命,实现HttpClient对象的复用,比如对其建一个静态的对象:

private static HttpClient Client = new HttpClient();

我们使用这种方式优化上面的代码 

using System;using System.Net.Http;namespace HttpClientDemo{    class Program    {        private static readonly HttpClient _client = new HttpClient();        static void Main(string[] args)        {            HttpAsync();            Console.WriteLine("Hello World");            Console.ReadKey();        }        public static async void HttpAsync()        {            for (int i = 0; i < 10; i++)            {                var result = await _client.GetAsync("http://www.baidu.com");                Console.WriteLine($"{i}:{result.StatusCode}");            }        }    }}

这样调整HttpClient的引用后,虽然可以解决一些问题,但是仍然存在一些问题:

  • 因为是复用的HttpClient,那么一些公共的设置就没办法灵活的调整,如请求头的自定义。

  • 因为HttpClient请求每个url时,会缓存url对应的主机ip,从而会导致DNS更新失效。

为了解决这些问题,在.net core 2.1中引入了新的HttpClientFactory类。

二、HttpClientFactory使用

微软在.Net Core 2.1中新引入了HttpClientFactory类,具有如下的优势:

  • HttpClientFactory很高效,可以最大程度上节省系统的sock而。

  • Factory,顾名思义HttpClientfactory就是HttpClient的工厂,内部已经帮我们处理好了对HttpClient的管理,不需要我们人工进行对象释放,同时,支持自定义请求头、支持DNS更新等。

我们用一个ASP.net core的程序作为示例,它的用法非常简单,首先是对其进行ioc注册:

public void ConfigureServices(IServiceCollection services){    // 注入HttpClient    services.AddHttpClient("client_1", config =>  //这里指定的name=client_1,可以方便我们后期服用该实例    {        config.BaseAddress = new Uri("http://www.baidu.com");        config.DefaultRequestHeaders.Add("header_1", "header_1");    });    services.AddHttpClient("client_2", config =>    {        config.BaseAddress = new Uri("https://www.qq.com/");        config.DefaultRequestHeaders.Add("header_2", "header_2");    });    services.AddHttpClient();    services.AddControllers();}

然后在控制器里面通过IHttpClientFactory创建一个HttpClient对象,之后的操作跟以前一样,但不需要担心其内部资源的释放:

using System.Net.Http;using System.Threading.Tasks;using Microsoft.Aspnetcore.mvc;namespace HttpClientFactoryDemo.Controllers{    [Route("api/[controller]")]    [ApiController]    public class DemoController : ControllerBase    {        IHttpClientFactory _httpClientFactory;        /// <summary>        /// 通过构造函数实现注入        /// </summary>        /// <param name="httpClientFactory"></param>        public DemoController(IHttpClientFactory httpClientFactory)        {            _httpClientFactory = httpClientFactory;        }        public async Task<string> Get()        {            var client = _httpClientFactory.CreateClient("client_1"); //复用在Startup中定义的client_1的httpclient            var result = await client.GetStringAsync("/page1.html");            var client2 = _httpClientFactory.CreateClient(); //新建一个HttpClient            var result2 = await client.GetAsync("http://www.baidu.com");            return result2.StatusCode.ToString();        }    }}

程序运行结果:

.NET Core中的HttpClientFactory类怎么用

AddHttpClient的源码

public static IServiceCollection AddHttpClient(this IServiceCollection services){    if (services == null)    {        throw new ArgumentNullException(nameof(services));    }    services.AddLogging();    services.AddOptions();    //    // Core abstractions    //    services.TryAddTransient<HttpMessageHandlerBuilder, DefaultHttpMessageHandlerBuilder>();    services.TryAddSingleton<IHttpClientFactory, DefaultHttpClientFactory>();    //    // Typed Clients    //    services.TryAdd(ServiceDescriptor.Singleton(typeof(ITypedHttpClientFactory<>), typeof(DefaultTypedHttpClientFactory<>)));    //    // Misc infrastructure    //    services.TryAddEnumerable(ServiceDescriptor.Singleton<IHttpMessageHandlerBuilderFilter, LoggingHttpMessageHandlerBuilderFilter>());    return services;}

看下面这句代码:

services.TryAddSingleton<IHttpClientFactory, DefaultHttpClientFactory>();

这里添加依赖注入的时候为IHttpClientFactory接口绑定了DefaultHttpClientFactory类。

我们在来看IHttpClientFactory接口中关键的CreateClient方法:

public HttpClient CreateClient(string name){    if (name == null)    {        throw new ArgumentNullException(nameof(name));    }    var entry = _activeHandlers.GetOrAdd(name, _entryFactory).Value;    var client = new HttpClient(entry.Handler, disposeHandler: false);    StartHandlerEntryTimer(entry);    var options = _optionsMonitor.Get(name);    for (var i = 0; i < options.HttpClientActions.Count; i++)    {        options.HttpClientActions[i](client);    }    return client;}

从代码中我们可以看出:HttpClient的创建不在是简单的new HttpClient(),而是传入了两个参数:HttpMessageHandler handler与bool disposeHandler。

disposeHandler参数为false时表示要重用内部的handler对象。handler参数则从上一句的代码中可以看出是以name为键值从一字典中取出,又因为DefaultHttpClientFactory类是通过TryAddSingleton方法注册的,也就意味着其为单例,那么这个内部字典便是唯一的,每个键值对应的ActiveHandlerTrackingEntry对象也是唯一,该对象内部中包含着handler。

下一句代码StartHandlerEntryTimer(entry); 开启了ActiveHandlerTrackingEntry对象的过期计时处理。默认过期时间是2分钟。

internal void ExpiryTimer_Tick(object state){    var active = (ActiveHandlerTrackingEntry)state;    // The timer callback should be the only one removing from the active collection. If we can't find    // our entry in the collection, then this is a bug.    var removed = _activeHandlers.TryRemove(active.Name, out var found);    Debug.Assert(removed, "Entry not found. We should always be able to remove the entry");    Debug.Assert(object.ReferenceEquals(active, found.Value), "Different entry found. The entry should not have been replaced");    // At this point the handler is no longer 'active' and will not be handed out to any new clients.    // However we haven't dropped our strong reference to the handler, so we can't yet determine if    // there are still any other outstanding references (we know there is at least one).    //    // We use a different state object to track expired handlers. This allows any other thread that acquired    // the 'active' entry to use it without safety problems.    var expired = new ExpiredHandlerTrackingEntry(active);    _expiredHandlers.Enqueue(expired);    Log.HandlerExpired(_logger, active.Name, active.Lifetime);    StartCleanupTimer();}

先是将ActiveHandlerTrackingEntry对象传入新的ExpiredHandlerTrackingEntry对象。

public ExpiredHandlerTrackingEntry(ActiveHandlerTrackingEntry other){    Name = other.Name;    _livenessTracker = new WeakReference(other.Handler);    InnerHandler = other.Handler.InnerHandler;}

在其构造方法内部,handler对象通过弱引用方式关联着,不会影响其被GC释放。

然后新建的ExpiredHandlerTrackingEntry对象被放入专用的队列。

最后开始清理工作,定时器的时间间隔设定为每10秒一次。

internal void CleanupTimer_Tick(object state){    // Stop any pending timers, we'll restart the timer if there's anything left to process after cleanup.    //    // With the scheme we're using it's possible we could end up with some redundant cleanup operations.    // This is expected and fine.    //    // An alternative would be to take a lock during the whole cleanup process. This isn't ideal because it    // would result in threads executing ExpiryTimer_Tick as they would need to block on cleanup to figure out    // whether we need to start the timer.    StopCleanupTimer();    try    {        if (!Monitor.TryEnter(_cleanupActiveLock))        {            // We don't want to run a concurrent cleanup cycle. This can happen if the cleanup cycle takes            // a long time for some reason. Since we're running user code inside Dispose, it's definitely            // possible.            //            // If we end up in that position, just make sure the timer gets started again. It should be cheap            // to run a 'no-op' cleanup.            StartCleanupTimer();            return;        }        var initialCount = _expiredHandlers.Count;        Log.CleanupCycleStart(_logger, initialCount);        var stopwatch = ValueStopwatch.StartNew();        var disposedCount = 0;        for (var i = 0; i < initialCount; i++)        {            // Since we're the only one removing from _expired, TryDequeue must always succeed.            _expiredHandlers.TryDequeue(out var entry);            Debug.Assert(entry != null, "Entry was null, we should always get an entry back from TryDequeue");            if (entry.CanDispose)            {                try                {                    entry.InnerHandler.Dispose();                    disposedCount++;                }                catch (Exception ex)                {                    Log.CleanupItemFailed(_logger, entry.Name, ex);                }            }            else            {                // If the entry is still live, put it back in the queue so we can process it                // during the next cleanup cycle.                _expiredHandlers.Enqueue(entry);            }        }        Log.CleanupCycleEnd(_logger, stopwatch.GetElapsedTime(), disposedCount, _expiredHandlers.Count);    }    finally    {        Monitor.Exit(_cleanupActiveLock);    }    // We didn't totally empty the cleanup queue, try again later.    if (_expiredHandlers.Count > 0)    {        StartCleanupTimer();    }}

上述方法核心是判断是否handler对象已经被GC,如果是的话,则释放其内部资源,即网络连接。

回到最初创建HttpClient的代码,会发现并没有传入任何name参数值。这是得益于HttpClientFactoryExtensions类的扩展方法。

public static HttpClient CreateClient(this IHttpClientFactory factory){    if (factory == null)    {        throw new ArgumentNullException(nameof(factory));    }    return factory.CreateClient(Options.DefaultName);}

Options.DefaultName的值为string.Empty。

以上是“.NET Core中的HttpClientFactory类怎么用”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网精选频道!

--结束END--

本文标题: .NET Core中的HttpClientFactory类怎么用

本文链接: https://lsjlt.com/news/325754.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
  • .NET Core中的HttpClientFactory类怎么用
    小编给大家分享一下.NET Core中的HttpClientFactory类怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!一、HttpClient...
    99+
    2023-06-29
  • 怎样在ASP.NET Core中使用HttpClientFactory
    本篇内容主要讲解“怎样在ASP.NET Core中使用HttpClientFactory”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎样在ASP.NET Core中使用HttpClientFa...
    99+
    2023-06-14
  • 如何在ASP.NET Core中使用HttpClientFactory
    目录为什么要使用 HttpClientFactory 使用 HttpClientFactory 注入 Controller ASP.Net Core 是一个开源的,跨平台的,轻量级模...
    99+
    2024-04-02
  • .NET Core中怎么使用Autofac
    今天小编给大家分享一下.NET Core中怎么使用Autofac的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。Au...
    99+
    2023-06-29
  • .Net Core的CustomSerialPort()怎么用
    这篇文章主要介绍“.Net Core的CustomSerialPort()怎么用”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“.Net Core的CustomSerialPort...
    99+
    2023-06-26
  • .NETCore中的HttpClientFactory类用法详解
    一、HttpClient使用 在C#中,如果我们需要向某特定的URL地址发送Http请求的时候,通常会用到HttpClient类。会将HttpClient包裹在using内部进行声明...
    99+
    2024-04-02
  • NET Core中的Worker Service是什么/怎么用
    本篇内容主要讲解“NET Core中的Worker Service是什么/怎么用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“NET Core中的Worker Service是什么/怎么用”吧!...
    99+
    2023-06-09
  • Linux中怎么使用Docker托管.NET Core
    这篇文章主要介绍“Linux中怎么使用Docker托管.NET Core”,在日常操作中,相信很多人在Linux中怎么使用Docker托管.NET Core问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Lin...
    99+
    2023-06-27
  • .NET Core中使用gRPC的方法
    目录1.什么是gRPC1.基本介绍2.proto文件3.上手实践2.gRPC流1.服务端流、客户端流、双向流2.NetCore Web项目作为客户端3.gRPC AOP拦截1.什么是...
    99+
    2024-04-02
  • 用于.NET Core的ORM是怎样的
    今天就跟大家聊聊有关用于.NET Core的ORM是怎样的,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。尽管EF Core正努力提供视图和存储过程等基本数据库特性,但是开发人员也在寻...
    99+
    2023-06-19
  • .net core异常中间件的使用
    目录正文结正文 if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } 这样写入中间件哈,那么在env环境...
    99+
    2024-04-02
  • .net core静态中间件的使用
    目录正文结正文 我们使用静态文件调用: app.UseStaticFiles(); 那么这个默认会将我们根目录下的wwwroot作为静态目录。 这个就比较值得注意的,可能刚开...
    99+
    2024-04-02
  • .Net Core 之AutoFac的使用
    目录Autofac介绍组件的三种注册方式生命周期AutoFac 在asp .net core中的使用本文不介绍IoC和DI的概念,如果你对Ioc之前没有了解的话,建议先去搜索一下相关...
    99+
    2024-04-02
  • .NET Core怎么配置TLS Cipher
    本篇内容介绍了“.NET Core怎么配置TLS Cipher”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!.NET C...
    99+
    2023-06-21
  • Ubuntu 14.04怎么部署.Net Core
    这篇文章主要介绍了Ubuntu 14.04怎么部署.Net Core的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Ubuntu 14.04怎么部署.Net Core文章都会有所收获,下面我们一起来看看吧。.NE...
    99+
    2023-06-28
  • .Net Core WebAPI怎么导入CSV
    这篇文章主要介绍“.Net Core WebAPI怎么导入CSV”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“.Net Core WebAPI怎么导入CSV”...
    99+
    2023-06-30
  • 详解.NET Core中的Worker Service
    目录Worker Service项目程序和后台服务Worker Service 中使用Logging运行Worker Service当你想到ASP.NET Core时,可能会想到We...
    99+
    2024-04-02
  • 怎么在Linux中安装微软的 .NET Core SDK
    这篇文章给大家分享的是有关怎么在Linux中安装微软的 .NET Core SDK的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。.NET Core  是微软提供的免费、跨平台和开源的开发框架,可以构建桌...
    99+
    2023-06-16
  • .NET Core(.NET6)中gRPC使用实践
    目录一、简介二、创建gRPC服务端1.创建gRPC项目2.编写自己的服务三、创建gRPC客户端1.创建客户端项目2.grPC服务https的调用3.gRPC内网http调用4.IOC...
    99+
    2024-04-02
  • 怎么用.net core 实现简单爬虫
    本篇内容主要讲解“怎么用.net core 实现简单爬虫”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“怎么用.net core 实现简单爬虫”吧!一.介绍一个Http请求框架HttpCode.C...
    99+
    2023-06-19
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作