91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

.NET怎樣配置JSON中依賴注入

發布時間:2021-01-29 15:56:50 來源:億速云 閱讀:166 作者:小新 欄目:編程語言

這篇文章主要介紹了.NET怎樣配置JSON中依賴注入,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

前言

在以前的 ASP.NET 4+ (MVC,Web Api,Owin,SingalR等)時候,都是提供了專有的接口以供使用第三方的依賴注入組件,比如我們常用的會使用 Autofac、Untiy、String.Net 等,這些第三放依賴注入組件基本上都提供了一套配置注入或者配置生命周期的方式,除了直接配置到類里面之外,還提供了要么使用 xml 文件,要么使用 json 等,那么在新的 ASP.NET Core 中微軟已經默認的給我們提供了一個依賴注入的功能,我們就不再需要借助于第三方組件來實現依賴注入了,但是有時候我們想在配置文件中來配置依賴注入,微軟本身的 DI 組件并沒有給我們提供一個可供配置的文件,那么我們就需要自己來實現這個配置項的功能。個人覺得其主要使用場景是一些在編譯時不能確定實現的,需要動態修改實現的地方。

下面就來看看應該如何來做這件事情吧。

Getting Started

首先,在應用程序中我們創建一個接口,以供 DI使用:

public interface IFoo
{
  string GetInputString(string input);
}

然后,添加一個 IFoo 接口的實現 Foo

public class Foo : IFoo
{
  public string GetInputString(string input)
  {
    return $"輸入的字符串為:{ input }";
  }
}

接下來,我們需要把以上的 IFoo 接口和它的實現添加到 Startup.cs 文件中的ConfigureServices方法中,ConfigureServices 主要是用來配置依賴注入服務的。然后通過該方法提供的ISerciceCollection接口參數注入 Services。

public void ConfigureServices(IServiceCollection services)
{
  services.Add(new ServiceDescriptor(serviceType: typeof(IFoo), 
                    implementationType: typeof(Foo), 
                    lifetime: ServiceLifetime.Transient));
}

這里,我們使用到了 IServiceCollection 里面的 Add 方法,添加一個生命周期為瞬態的 IFoo 的實現。瞬態就是說在每次請求的時候都將創建一個Foo的實例。

以上是默認微軟為我們提供的添加依賴注入的方法,下面我們來看一下怎么來改造成我們需要的使用 json 文件的方式。

使用 json 文件配置 DI

當我們使用json文件配置依賴注入的時候,可以選擇新建一個json文件,也可以直接使用 appsettings.json 文件。現在我們就直接在 appsettings.json 文件中添加關于DI的配置了。

appsettings.json

 "Logging": {
  "IncludeScopes": false,
  "LogLevel": {
   "Default": "Debug",
   "System": "Information",
   "Microsoft": "Information"
  }
 },

 "DIServices": [
  {
   "serviceType": "[namesapce].IFoo",
   "implementationType": "[namesapce].Foo",
   "lifetime": "Transient"
  }
 ]
}

首先,添加一個名為 “DIServices” 的數組節點,數組中包含一個或多個配置service的對象,serviceType代表服務接口的類型,implementationType接口的實現,lifetime 初始化實例的生命周期。

注意:配置文件中的類型必須為全名稱,即包含命名空間。

接下來,添加一個和Json文件配置項相對應的一個service類,這里我們需要使用 Newtonsoft 這個json庫。

using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;
using Newtonsoft.Json.Converters;

public class Service
{
  public string ServiceType { get; set; }

  public string ImplementationType { get;set; }

  [JsonConverter(typeof(StringEnumConverter))]
  public ServiceLifetime Lifetime { get; set; }
}

然后需要改造一下ConfigureServices,在 ConfigureServices 中讀取配置的 json文件即可。

public void ConfigureServices(IServiceCollection services)
{
  //services.Add(new ServiceDescriptor(serviceType: typeof(IFoo),
  //            implementationType: typeof(Foo),
  //            lifetime: ServiceLifetime.Transient));

  var jsonServices = JObject.Parse(File.ReadAllText("appSettings.json"))["DIServices"];
  var requiredServices = JsonConvert.DeserializeObject<List<Service>>(jsonServices.ToString());

  foreach (var service in requiredServices) {
    services.Add(new ServiceDescriptor(serviceType: Type.GetType(service.ServiceType),
                      implementationType: Type.GetType(service.ImplementationType),
                      lifetime: service.Lifetime));
  }
}

然后我們測試一下是否是可用的。

測試

打開 HomeController.cs ,添加注入項:

public class HomeController : Controller
{
  private readonly IFoo _foo;

  public HomeController(IFoo foo) 
  {
    _foo = foo;
  }

  public IActionResult About() 
  {
    ViewData["Message"] = _foo.GetInputString("Your application description page.");

    return View();
  }
}

在 HomeController的構造函數添加IFoo接口,然后在 About 的Action中使用。

運行程序,打開頁面,點擊 About標簽

.NET怎樣配置JSON中依賴注入

感謝你能夠認真閱讀完這篇文章,希望小編分享的“.NET怎樣配置JSON中依賴注入”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平顺县| 桂阳县| 灵丘县| 盐源县| 天津市| 子洲县| 德江县| 民权县| 凉城县| 元谋县| 寻乌县| 沙河市| 石阡县| 张家口市| 波密县| 柳州市| 柳林县| 会同县| 宁安市| 邵阳市| 泸定县| 库车县| 博湖县| 高平市| 乐亭县| 绥棱县| 原平市| 时尚| 安泽县| 两当县| 通渭县| 绵竹市| 高唐县| 武清区| 石泉县| 邵武市| 探索| 恩施市| 阿拉善盟| 琼结县| 无极县|