.Netcore Swagger - 解決外部庫致使的「Actions require an explicit HttpMethod binding for Swagger 2.0」

現象:json

項目中導入Ocelot後,swagger頁面沒法正常顯示,查看異常發現 Ocelot.Raft.RaftController 中的 Action 配置不徹底,swagger掃描時不能正確生成 swagger.json

spa

解決方法:code

在掃描中隱藏Ocelot的controller,避免被swagger生成文檔blog

建立ApiExplorerIgnores文檔

    public class ApiExplorerIgnores : IActionModelConvention
    {
        /// <summary>
        /// Ocelot自帶的Controller與swagger2.0衝突,在此排除掃描
        /// </summary>
        /// <param name="action"></param>
        public void Apply(ActionModel action)
        {
            //衝突的Ocelot.Raft.RaftController
            if (action.Controller.ControllerName.Equals("Raft"))
                action.ApiExplorer.IsVisible = false;
            //Ocelot.Cache.OutputCacheController
            if (action.Controller.ControllerName.Equals("OutputCache"))
                action.ApiExplorer.IsVisible = false;
        }
    }

 

setup.cs中添加io

services.AddMvc(c => c.Conventions.Add(new ApiExplorerIgnores()));
相關文章
相關標籤/搜索