這篇文章主要介紹了net core webapi多版本控制與*ger(n*)配置,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
目錄
前言
版本控制
前言
首先希望webapi支持多版本,*ger針對不同的版本可進行交互。多版本控制基于Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer包,*ger可以選擇Swashbuckle.AspNetCore和n*.AspNetCore.由于我們系統(tǒng)使用的是n*所以繼續(xù)沿用,當(dāng)然Swashbuckle.AspNetCore也和不錯,有時間再總結(jié)。
版本控制
1.導(dǎo)入相關(guān)nuget。Swashbuckle.AspNetCore,n*.AspNetCore.
2.添加api多版本控制服務(wù)
2.1.首先是讓項目支持多版本的服務(wù)添加
services.AddApiVersioning(option =>
{
// 可選,為true時API返回支持的版本信息
option.ReportApiVersions = true;
// 不提供版本時,默認(rèn)為1.0
option.AssumeDefaultVersionWhenUnspecified = true;
//版本信息放到header ,不寫在不配置路由的情況下,版本信息放到response url 中
option.ApiVersionReader = new HeaderApiVersionReader("api-version");
// 請求中未指定版本時默認(rèn)為1.0
option.DefaultApiVersion = new ApiVersion(1, 0);
}).AddVersionedApiExplorer(option =>
{ // 版本名的格式:v+版本號
option.GroupNameFormat = "'v'V";
option.AssumeDefaultVersionWhenUnspecified = true;
});
////獲取webapi版本信息,用于*ger多版本支持
this.provider = services.BuildServiceProvider().GetRequiredService<IApiVersionDescriptionProvider>();
服務(wù)我們已經(jīng)注入了,下面我們看一下怎么webapi多版本的支持
2.1.1.多版本的控制
1.QueryString
/// <summary>
/// 用戶管理API
/// </summary>
[ServiceFilter(typeof(LogFilterAttribute))]
[ApiController]
[Route("api/[controller]/[action]")]
[ApiVersion("2.0")]
public class UserController : ApiController
{}
當(dāng)我們注冊服務(wù)時不加 option.ApiVersionReader = new HeaderApiVersionReader("api-version");那么版本信息就是通過url?api-version=2進行傳遞2.header
2.header
/// <summary>
/// 用戶管理API
/// </summary>
[ServiceFilter(typeof(LogFilterAttribute))]
[ApiController]
[Route("api/[controller]/[action]")]
[ApiVersion("2.0")]
public class UserController : ApiController
{}
如果不指定版本路由那么定義ApiVersionReader 則通過header傳遞
以上兩種方式,默認(rèn)版本(v1.0)均可不傳遞版本號
3.版本路由
/// <summary>
/// 用戶管理API
/// </summary>
[ServiceFilter(typeof(LogFilterAttribute))]
[ApiController]
[Route("api/v{version:apiVersion}/[controller]/[action]")]
[Authorize]
[ApiVersion("1.0")]
[ApiVersion("2.0")]
public class UserController : ApiController
{}
這種方式很直觀,但如果原有項目沒有使用多版本控制不建議用,可采用header的方式更為合理一些,
2.1.2同一個 Controller支持多版本
增加多個 [ApiVersion("2.0")]即可。
/// <summary>
/// 用戶管理API
/// </summary>
[ServiceFilter(typeof(LogFilterAttribute))]
[ApiController]
[Route("api/v{version:apiVersion}/[controller]/[action]")]
//[Authorize]
[ApiVersion("1.0")]
[ApiVersion("2.0")]
public class UserController : ApiController
{}
但是兩個相同的版本中Controller不能有相同的方法。比如v1文件夾和v2文件的UserController都指向v2版本,是不能同時擁有GetList()的,但是如果我們想要v2中的GetList重寫v1的GetList方法,其他的方法都繼承過來怎么處理呢?
v1版本中的controller指定[ApiVersion("1.0")][ApiVersion("2.0")]
/// <summary>
/// v1.用戶管理API
/// </summary>
[ServiceFilter(typeof(LogFilterAttribute))]
[ApiController]
[Route("api/v{version:apiVersion}/[controller]/[action]")]
//[Authorize]
[ApiVersion("1.0")]
[ApiVersion("2.0")]
public class UserController : ApiController
{}
v2版本中的controller指定[ApiVersion("2.0")]
/// <summary>
/// v1.用戶管理API
/// </summary>
[ServiceFilter(typeof(LogFilterAttribute))]
[ApiController]
[Route("api/v{version:apiVersion}/[controller]/[action]")]
//[Authorize]
[ApiVersion("2.0")]
public class UserController : ApiController
{}
v1版本中的GetList()方法 MapToApiVersion到v1即可
/// <summary>
/// 獲取用戶列表
/// </summary>
/// <returns></returns>
[HttpGet,MapToApiVersion("1.0")]
public NetResponse<List<User>> GetList()
{}
這樣以來v1與v2中的GetList就互不影響了。
3.注冊n*(AddOpenApiDocument和AddSwaggerDocument)
NSwag注入服務(wù)有兩個方法:AddOpenApiDocument和AddSwaggerDocument,兩者的區(qū)別就是架構(gòu)類型不一樣,AddOpenApiDocument的SchemaType使用的是OpenApi3,AddSwaggerDocument的SchemaType使用的是Swagger2:
我用的是AddSwaggerDocument
foreach (var description in provider.ApiVersionDescriptions)
{
services.AddSwaggerDocument(document =>
{
document.OperationProcessors.Add(new OperationSecurityScopeProcessor("JWT token"));
document.DocumentName = description.GroupName;
document.Version = description.GroupName;
document.ApiGroupNames = new string[] { description.GroupName };
//jwt 認(rèn)證
document.AddSecurity("JWT token", Enumerable.Empty<string>(),
new OpenApiSecurityScheme()
{
Type = OpenApiSecuritySchemeType.ApiKey,
Name = nameof(Authorization),
In = OpenApiSecurityApiKeyLocation.Header,
Description = "將token值復(fù)制到如下格式: \nBearer {token}"
}
);
});
}
4,n*中間件
app.UseOpenApi();
app.UseSwaggerUi3(setting =>
{
});
是的我們做任何配置,如果你愿意其實有很多好玩的。但上面的配置方式足夠多版本的控制與n*交互。
到此這篇關(guān)于net core webapi多版本控制與*ger(n*)配置教程的文章就介紹到這了,更多相關(guān)net core webapi多版本控制內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
來源:腳本之家
鏈接:https://www.jb51.net/article/198889.htm
申請創(chuàng)業(yè)報道,分享創(chuàng)業(yè)好點子。點擊此處,共同探討創(chuàng)業(yè)新機遇!