.NET CORE HttpClient的使用方法

时间:2022-06-22 15:18:47

前言

自从httpclient诞生依赖,它的使用方式一直备受争议,framework版本时代产生过相当多经典的错误使用案例,包括tcp链接耗尽、dns更改无感知等问题。有兴趣的同学自行查找研究。在.netcore版本中,提供了ihttpclientfactory用来创建httpclient以解决之前的种种问题。那么我们一起看一下它的用法。

使用方式

  • 基本用法。 直接注入ihttpclientfactory
  • 命名客户端。注入ihttpclientfactory并带有名称,适用于需要特定的客户端配置
  • 类型化客户端。类似于命名客户端,但不需要名称作为标识,直接和某个服务类绑定在一起。注:这种方式经测试貌似不适用控制台程序。
  • 生成客户端。这种方式相当于在客户端生成对应的代理服务,一般特定的需要才需要这种方式。需要结合第三方库如 refit 使用。这里不具体介绍。

示例代码

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public void configureservices(iservicecollection services)
{
 //普通注入
 servicecollection.addhttpclient();
 //命名注入
 servicecollection.addhttpclient(constants.service_useraccount, (serviceprovider, c) =>
 {
  var configuration = serviceprovider.getrequiredservice<iconfiguration>();
 c.baseaddress = new uri(configuration.getvalue<string>("serviceapibaseaddress:useraccountservice"));
 });
 //类型化客户端
 services.addhttpclient<typedclientservice>();
}
 
public class accreditationservice
{
 private ihttpclientfactory _httpclientfactory;
 private const string _officialaccrename = "manage/commitagencyofficialorder";
 private const string _abandonaccusername = "info/abandonuseraccreditationinfo";
 
 public accreditationservice(ihttpclientfactory clientfactory)
 {
  _httpclientfactory = clientfactory;
 }
 
 public async task<string> commitagentofficial(commitagencyofficialorderrequest request)
 {
    //使用factory 创建httpclient
   var httpclient = _httpclientfactory.createclient(constants.service_accreditation);
   var response = await httpclient.postasjsonasync(_officialaccrename, request);
   if (!response.issuccessstatuscode) return string.empty;
   var result = await response.content.readasasync<accreditationapiresponse<commitagencyofficialorderresult>>();
   if (result.returncode != "0") return string.empty;
    return result.data.orderno;
 }
}

命名化客户端方式直接注入的是httpclient而非httpclientfactory

?
1
2
3
4
5
6
7
8
9
public class typedclientservice
{
 private httpclient _httpclient;
 
 public typedclientservice(httpclient httpclient)
 {
  _httpclient = httpclient;
 }
}

logging

通过ihttpclientfactory创建的客户端默认记录所有请求的日志消息,并每个客户端的日志类别会包含客户端名称,例如,名为 mynamedclient 的客户端记录类别为“system.net.http.httpclient.mynamedclient.logicalhandler”的消息。

请求管道

同framework时代的httpclient一样支持管道处理。需要自定义一个派生自delegatinghandler的类,并实现sendasync方法。例如下面的例子

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public class validateheaderhandler : delegatinghandler
{
 protected override async task<httpresponsemessage> sendasync(
  httprequestmessage request,
  cancellationtoken cancellationtoken)
 {
  if (!request.headers.contains("x-api-key"))
  {
   return new httpresponsemessage(httpstatuscode.badrequest)
   {
    content = new stringcontent(
     "you must supply an api key header called x-api-key")
   };
  }
 
  return await base.sendasync(request, cancellationtoken);
 }
}

在addhttpclient的时候注入进去

?
1
2
3
4
5
6
7
8
9
10
11
public void configureservices(iservicecollection services)
{
 services.addtransient<validateheaderhandler>();
 
 services.addhttpclient("externalservice", c =>
 {
  // assume this is an "external" service which requires an api key
  c.baseaddress = new uri("https://localhost:5001/");
 })
 .addhttpmessagehandler<validateheaderhandler>();
}

原理和生存周期

ihttpclientfactory每次调用createhttpclient都会返回一个全新的httpclient实例。而负责http请求处理的核心httpmessagehandler将会有工厂管理在一个池中,可以重复使用,以减少资源消耗。httpmessagehandler默认生成期为两分钟。可以在每个命名客户端上重写默认值:

?
1
2
3
4
5
public void configureservices(iservicecollection services)
{  
 services.addhttpclient("extendedhandlerlifetime")
  .sethandlerlifetime(timespan.fromminutes(5));
}

.NET CORE HttpClient的使用方法

polly支持

polly是一款为.net提供恢复能力和瞬态故障处理的库,它的各种策略应用(重试、断路器、超时、回退等)。ihttpclientfactory增加了对其的支持,它的nuget包为: microsoft.extensions.http.polly。注入方式如下:

?
1
2
3
4
5
6
7
public void configureservices(iservicecollection services)
{  
 services.addhttpclient<unreliableendpointcallerservice>()
  .addtransienthttperrorpolicy(p =>
   p.waitandretryasync(3, _ => timespan.frommilliseconds(600)));
 
}

更详细的结合使用请参考:https://github.com/app-vnext/polly/wiki/polly-and-httpclientfactory

总结

到此这篇关于.net core httpclient使用方法的文章就介绍到这了,更多相关.net core httpclient使用内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://www.cnblogs.com/gt1987/p/13391641.html