在WebApi 中使用AutoFac

来源:https://www.cnblogs.com/peterzhang123/archive/2020/04/30/12808922.html
-Advertisement-
Play Games

參考文檔 https://www.cnblogs.com/htsboke/p/10956807.html https://www.cnblogs.com/lenmom/p/8510572.html 在WebApi項目中使用AutoFac,結構如下: 首先在Api項目當中引用AutoFac包,如下圖所 ...


參考文檔

https://www.cnblogs.com/htsboke/p/10956807.html

https://www.cnblogs.com/lenmom/p/8510572.html

 

在WebApi項目中使用AutoFac,結構如下:

首先在Api項目當中引用AutoFac包,如下圖所示:

 

倉儲類:

 1     public interface IUsersRepository
 2     {
 3         int GetUserIsExists(UsersEntity criteria);
 4 
 5     }
 6 
 7 
 8     public class UsersRepository : IUsersRepository
 9     {
10         Logger log = LogManager.GetLogger("UsersRepository");
11 
12         /// <summary>
13         /// 獲取用戶是否存在
14         /// </summary>
15         /// <param name="criteria"></param>
16         /// <returns></returns>
17         public int GetUserIsExists(UsersEntity criteria)
18         {
19             string sql = "。。。。";
20             try
21             {
22                  //查詢sql代碼,此處省略。。。。             
}
28 catch (Exception ex) 29 { 30 log.Fatal(ex, "獲取用戶是否存在異常:{0},SQL:{1}", ex.Message, sql); 31 return 0; 32 } 33 } 34 }

服務類:

 1     //介面   
public interface IUsersService 4 { 5 int GetUserIsExists(UsersEntity criteria); 6 7 } 8 10 //實現類 11 public class UsersService : IUsersService 12 { 13 private readonly IUsersRepository _usersrepository; 14 public UsersService(IUsersRepository usersrepository) //通過構造函數註入 15 { 16 _usersrepository = usersrepository; 17 } 18 19 /// <summary> 20 /// 獲取用戶是否存在 21 /// </summary> 22 /// <param name="criteria"></param> 23 /// <returns></returns> 24 public int GetUserIsExists(UsersEntity criteria) 25 { 26 return _usersrepository.GetUserIsExists(criteria); 27 } 28 }

在Api介面項目中創建一個AutoFac工具類:AutofacUtil.cs   

 1     public class AutofacUtil
 2     {
 3         private static IContainer _container;
 4 
 5         public static void ConfigureContainer()
 6         {
 7             #region AutoFac IOC容器
 8 
 9             var builder = new ContainerBuilder();
10 
11             try
12             {
13                 //builder.RegisterControllers(Assembly.GetCallingAssembly());  //註冊mvc控制器  需要引用package Autofac.Mvc
14 
15                 //builder.RegisterApiControllers(Assembly.GetExecutingAssembly()).PropertiesAutowired();  //支持Api控制器屬性註入
16                 builder.RegisterApiControllers(Assembly.GetCallingAssembly());  //註冊所有api控制器  構造函數註入  需要引用package Autofac.WebApi
17 
18                 //註冊程式集
19                 #region Service
20                 var assemblysServices = Assembly.Load("WebApi.Service");
21                 builder.RegisterAssemblyTypes(assemblysServices)
22                 .AsImplementedInterfaces()
23                 .InstancePerDependency();
24                 #endregion
25                 
26                 #region Repository
27                 var assemblysRepository = Assembly.Load("WebApi.Repository");
28                 builder.RegisterAssemblyTypes(assemblysRepository)
29                 .AsImplementedInterfaces()
30                 .InstancePerDependency();
31                 #endregion
32 
33                 _container = builder.Build();   //創建依賴註入
34 
35 
36                 //設置MVC依賴註入
37                 //DependencyResolver.SetResolver(new AutofacDependencyResolver(_container));
38 
39                 //設置WebApi依賴註入
40                 GlobalConfiguration.Configuration.DependencyResolver = new AutofacWebApiDependencyResolver(_container);
41             }
42             catch (Exception ex)
43             {
44                 throw new Exception(ex.Message + "\n" + ex.InnerException);
45             }
46             #endregion
47         }
48 
49         /// <summary>
50         /// 從Autofac容器獲取對象
51         /// </summary>
52         /// <typeparam name="T"></typeparam>
53         /// <returns></returns>
54         public static T GetFromFac<T>()
55         {
56             return _container.Resolve<T>();
57         }
58 
59     }

在 Global.asax.cs 全局中註冊一下:

 1   public class WebApiApplication : System.Web.HttpApplication
 2     {
 3         protected void Application_Start()
 4         {
 5             AreaRegistration.RegisterAllAreas();
 6             GlobalConfiguration.Configure(WebApiConfig.Register);
 7             FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
 8             RouteConfig.RegisterRoutes(RouteTable.Routes);
 9             BundleConfig.RegisterBundles(BundleTable.Bundles);
10 
11             //AutoFac 註冊
12             AutofacUtil.ConfigureContainer();
13 
14         }
15     }

最後在介面中使用:

 1     public class UsersController : ApiController
 2     {
 3         private readonly IUsersService _usersService;
 4         public UsersController(IUsersService usersService)    //使用構造函數註入
 5         {
 6             _usersService = usersService;
 7         }
 8 
 9 
10         /// <summary>
11         /// 獲取用戶是否存在
12         /// </summary>
13         /// <param name="username"></param>
14         /// <param name="password"></param>
15         /// <returns></returns>
16         [HttpPost]
17         public IHttpActionResult GetUserIsExists(string username, string password)
18         {
19             //驗證是否存在當前用戶
20             var obModel = new UsersEntity()
21             {
22                 Username = username,
23                 Password = Encryption.MD5(password)
24             };
25             var getresult = _usersService.GetUserIsExists(obModel);
26 
27             return Json(new { isexists = getresult > 0 });
28         }
29 
30 
31     }

測試結果:

 

最後:如果出現 未將對象引用的實例 的錯誤,檢查一下是否引用相應的dll程式集了。

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 首先看下ThinkPHP6官方手冊關於多應用的目錄結構: ├─app 應用目錄 │ ├─index 主應用 │ │ ├─controller 控制器目錄 │ │ ├─model 模型目錄 │ │ ├─view 視圖目錄 │ │ ├─config 配置目錄(優先) │ │ └─ ... 更多類庫目錄 ...
  • Gevent 是一個第三方庫,可以輕鬆通過gevent實現併發同步或非同步編程 ...
  • 程式目的:輸入年份和月份,查詢當月的日曆。弄著玩。程式界面:代碼如下:# coding:utf8from tkinter import *from calendar import *from time import *class APP: def __init__(self, master): fr... ...
  • 環境: 介紹 Quickuse.Caching 快速應用緩存組件,提供常用緩存使用方式,目前支持常用的 、`Redis Memcache` 運行時緩存 有時候也本稱作為伺服器緩存、進程緩存、站點緩存、程式緩存、本地緩存......各式各樣,我理解的其實他們都一個東西,都是在程式運行的時候才可以使用的 ...
  • 在之前的文章abp(net core)+easyui+efcore實現倉儲管理系統——入庫管理之九(四十五) 中我們已經實現了修改與刪除入庫單,今天來測試一下入庫單的修改與刪除功能。 ...
  • 如果你經常看開源項目的源碼,你會發現很多Dispose方法中都有這麼一句代碼: ,看過一兩次可能無所謂,看多了就來了興趣,這篇就跟大家聊一聊。 一:背景 1. 在哪發現的 相信現在Mysql在.Net領域中鋪的面越來越廣了,C 對接MySql的MySql.Data類庫的代碼大家可以研究研究,幾乎所有 ...
  • 前言 今天 .NET 官方博客宣佈 C 9 Source Generators 第一個預覽版發佈,這是一個用戶已經喊了快 5 年特性,今天終於發佈了。 簡介 Source Generators 顧名思義代碼生成器,它允許開發者在代碼編譯過程中獲取查看用戶代碼並且生成新的 C 代碼參與編譯過程,並且可 ...
  • 1、前言 面向對象設計(OOD)里有一個重要的思想就是依賴倒置原則(DIP),並由該原則牽引出依賴註入(DI)、控制反轉(IOC)及其容器等概念。在學習Core依賴註入、服務生命周期之前,下麵讓我們先瞭解下依賴倒置原則(DIP)、依賴註入(DI)、控制反轉(IOC)等概念,然後再深入學習Core依賴 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...