ABP框架使用Swagger

Posted xsj1989

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ABP框架使用Swagger相关的知识,希望对你有一定的参考价值。

参考文档:https://www.cnblogs.com/xcsn/p/7910890.html

步骤1:Nuget安装Swashbuckle到*.WebApi项目

步骤2:在*.WebApi》App_Start》SwaggerConfig.cs中,把多余的注释删掉,只保留用到的。

using System.Web.Http;
using WebActivatorEx;
using Framework;
using Swashbuckle.Application;
using System.IO;
using System.Linq;

[assembly: PreApplicationStartMethod(typeof(SwaggerConfig), "Register")]

namespace Framework
{
    public class SwaggerConfig
    {
        public static void Register()
        {
            var thisAssembly = typeof(SwaggerConfig).Assembly;

            GlobalConfiguration.Configuration
                .EnableSwagger(c =>
                    {
                        c.SingleApiVersion("v1", "Framework");//这个Framework是根据项目的前缀自动生成的,改成你自己的就好了

                        c.IncludeXmlComments(GetXmlCommentsPath("Application"));

                        c.UseFullTypeNameInSchemaIds();

                        c.ResolveConflictingActions(apiDescriptions => apiDescriptions.First());

                    }).EnableSwaggerUi("apis/{*assetPath}");
        }

        private static string GetXmlCommentsPath(string subName)
        {
            return Directory.GetFiles(System.AppDomain.CurrentDomain.BaseDirectory + "bin\\").FirstOrDefault(n => n.ToLower().EndsWith(subName.ToLower() + ".xml"));
        }
    }
}

步骤3:*.Application项目》右键属性》生成》输出》勾选 [XML文档文件],把路径修改一下:binFramework.Application.xml,就是把中间的 Debug去掉就好了。

步骤4:编译解决方案,设置Web项目启动项,Ctrl+F5,地址栏:http://localhost:61814/apis/index,就可以看到结果了。

以上是关于ABP框架使用Swagger的主要内容,如果未能解决你的问题,请参考以下文章

abp框架运行——前后端分离(基于VUE)

ABP 学习系列 - 配置Swagger

ABP/Swashbuckle - 使用 Swashbuckle CLI 生成 swagger 文档

ABP中的模块初始化过程

Abp Vnext手动搭建简单项目系列5

swagger.core的使用方法