ASP.NET Core 2 學習筆記(十三)Swagger

Swagger也算是行之有年的API文件生成器,只要在API上使用C#的<summary />文件註解標籤,就能夠產生精美的線上文件,而且對RESTful API有良好的支持。不只支持生成文件,還支持模擬調用的交互功能,連Postman都不用打開就能測API。
本篇將介紹如何經過Swagger產生ASP.NET Core的RESTful API文件。html

安裝套件

要在ASP.NET Core使用Swagger須要安裝Swashbuckle.AspNetCore套件。
經過過.NET Core CLI在項目文件夾執行安裝指令:git

dotnet add package Swashbuckle.AspNetCore

註冊Swagger

Startup.csConfigureServices加入Swagger的服務及Middleware。以下:github

using Swashbuckle.AspNetCore.Swagger;
// ...
public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddMvc()
                .AddJsonOptions(options => {
                    options.SerializerSettings.NullValueHandling = Newtonsoft.Json.NullValueHandling.Ignore;
                });

        services.AddSwaggerGen(c =>
        {
            c.SwaggerDoc(
                // name: 關係到 SwaggerDocument 的 URL 位置。
                name: "v1", 
                // info: 是用於 SwaggerDocument 版本信息的提示(內容非必填)。
                info: new Info
                {
                    Title = "RESTful API",
                    Version = "1.0.0",
                    Description = "This is ASP.NET Core RESTful API Sample.",
                    TermsOfService = "None",
                    Contact = new Contact { 
                        Name = "SnailDev", 
                        Url = "http://www.cnblogs.com/snaildev/" 
                    },
                    License = new License { 
                        Name = "CC BY-NC-SA 4.0", 
                        Url = "https://creativecommons.org/licenses/by-nc-sa/4.0/" 
                    }
                }
            );
        });
    }
    
    public void Configure(IApplicationBuilder app)
    {
        app.UseSwagger();
        app.UseSwaggerUI(c =>
        {
            c.SwaggerEndpoint(
                // url: 需配合 SwaggerDoc 的 name。 "/swagger/{SwaggerDoc name}/swagger.json"
                url: "/swagger/v1/swagger.json", 
                // name: 用於 Swagger UI 右上角選擇不一樣版本的 SwaggerDocument 提示名稱使用。
                name: "RESTful API v1.0.0"
            );
        });

        app.UseMvc();
    }
}
  • AddSwaggerGen
    Swagger生成器是負責取得API的規格併產生SwaggerDocument物件。
  • UseSwagger
    Swagger Middleware負責路由,提供SwaggerDocument物件。
    能夠從URL查看Swagger產生器產生的SwaggerDocument物件。
    http://localhost:5000/swagger/v1/swagger.json
  • UseSwaggerUI
    SwaggerUI是負責將SwaggerDocument物件變成漂亮的界面。
    預設URL:http://localhost:5000/swagger

API沿用ASP.NET Core 2 學習筆記(十二)REST-Like API的示例程序。web

設定完成後,啓動網站就能開啓Swagger UI 了。下面以下:json

文件註解標籤

在API加入<summary />文件註解標籤。以下:visual-studio-code

// ...
[Route("api/[controller]s")]
public class UserController : Controller
{
    /// <summary>
    /// 查詢使用者清單
    /// </summary>
    /// <param name="q">查詢使用者名稱</param>
    /// <returns>使用者清單</returns>
    [HttpGet]
    public ResultModel Get(string q) {
        // ...
    }
} 

再次打開Swagger,會發現沒有顯示說明,由於沒有設定.NET 的XML 文件目錄,因此Swagger 抓不到說明是正常的。api

打開*.csproj,在<Project />區塊中插入如下代碼:bash

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <DocumentationFile>bin\Debug\netcoreapp2.0\Api.xml</DocumentationFile>
    <NoWarn>1591</NoWarn>
  </PropertyGroup>

以我示例的*.csproj內容以下:app

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>netcoreapp2.0</TargetFramework>
  </PropertyGroup>

  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
    <DocumentationFile>bin\Debug\netcoreapp2.0\Api.xml</DocumentationFile>
    <NoWarn>1591</NoWarn>
  </PropertyGroup>

  <ItemGroup>
    <Folder Include="wwwroot\" />
  </ItemGroup>

  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.8" />
    <PackageReference Include="Swashbuckle.AspNetCore" Version="2.5.0" />
  </ItemGroup>

</Project>

而後在Swagger生成器設定讀取<DocumentationFile>指定的XML文件目錄位置:dom

// ...
public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        // ...
        services.AddSwaggerGen(c =>
        {
            // ...
            var filePath = Path.Combine(PlatformServices.Default.Application.ApplicationBasePath, "Api.xml");
            c.IncludeXmlComments(filePath);
        });
    }
}

返回格式

以RESTful API的例子來看,返回的格式都是JSON,因此能夠直接在Controller加上[Produces("application/json")]表示返回的類型都是JSON,在Swagger的Response Content Type選項就會被鎖定只有application/json能夠使用。以下:

// ...
[Route("api/[controller]s")]
[Produces("application/json")]
public class UserController : Controller
{
    // ...
}

返回類型

如有預期API在不一樣的HTTP Status Code時,會返回不一樣的對象,能夠透過[ProducesResponseType(type)]定義返回的對象。在Swagger中就能夠清楚看到該API可能會發生的HTTP Status Code及返回對象。例如:

// ...
[Route("api/[controller]s")]
[Produces("application/json")]
public class UserController : Controller
{
    /// <summary>
    /// 查詢使用者清單
    /// </summary>
    /// <param name="q">查詢使用者名稱</param>
    /// <returns>使用者清單</returns>
    [HttpGet]
    [ProducesResponseType(typeof(ResultModel<IEnumerable<UserModel>>), 200)]
    [ProducesResponseType(typeof(ResultModel<string>), 500)]
    public ResultModel<IEnumerable<UserModel>> Get(string q)
    {
        // ...
    }
}

執行結果

參考

ASP.NET Core Web API Help Pages using Swagger 
Swagger tools for documenting API's built on ASP.NET Core

 

老司機發車啦:https://github.com/SnailDev/SnailDev.NETCore2Learning 

相關文章
相關標籤/搜索