gpt4 book ai didi

Swagger 和 .Net Core 3 集成

转载 作者:行者123 更新时间:2023-12-01 15:00:08 26 4
gpt4 key购买 nike

我正在使用 swagger 记录我的 web api。但是,当我运行我的项目时,它会引发错误“找不到方法:'Void Microsoft.AspNetCore.StaticFiles.StaticFileMiddleware...”。

我只遵循了 youtube 上的教程。不确定错误的原因是什么。

我的项目是 .Net Core 3。

 internal class SwaggerConfiguration
{
public static void Configure(IServiceCollection services)
{
services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new Info() { Title = "Sample Portal API", Version = "1.0.0.0" });
});
}

public static void Configure(IConfiguration configuration, IApplicationBuilder app)
{
var swaggerOptions = new SwaggerOptions(configuration).Bind();

app.UseSwagger(options =>
{
options.RouteTemplate = swaggerOptions.Route;
});


app.UseSwaggerUI(options =>
{
options.SwaggerEndpoint(swaggerOptions.UIEndpoint, swaggerOptions.Description);
});
}
private class SwaggerOptions
{
IConfiguration _configuration;
public SwaggerOptions(IConfiguration configuration)
{
_configuration = configuration;
}
public string Route { get; set; }
public string Description { get; set; }
public string UIEndpoint { get; set; }

public SwaggerOptions Bind()
{
_configuration.GetSection(nameof(SwaggerOptions)).Bind(this);
return this;
}
}
}

这是我的创业类
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_3_0);

SwaggerConfiguration.Configure(services);
}

public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}

SwaggerConfiguration.Configure(Configuration, app);

app.UseHttpsRedirection();

app.UseRouting();
app.UseAuthorization();


app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});

}

有人可以照亮,提前致谢

最佳答案

这是为您的项目添加 Swagger 的最少步骤。

  • 在 PowerShell
  • 上运行以下命令
    Install-Package Swashbuckle.AspNetCore -Version 5.5.1
  • 在 Startup 类中,添加此引用
    '''
    使用 Microsoft.OpenApi.Models;
    '''
  • 在启动类的 ConfigureService 方法中添加以下内容:
  • services.AddSwaggerGen(c =>
    {
    c.SwaggerDoc("v1", new OpenApiInfo { Title = "My API", Version = "v1" });
    });
  • 将下面添加到startup.cs中的Configure方法
  • // Enable middleware to serve generated Swagger as a JSON endpoint.
    app.UseSwagger();

    // Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.),
    // specifying the Swagger JSON endpoint.
    app.UseSwaggerUI(c =>
    {
    c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
    })
  • 您可以通过 http://localhost:port/swagger
  • 访问 swagger 页面

    关于Swagger 和 .Net Core 3 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58142734/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com