分享一個基於Net Core 3.1開發的模塊化的項目

先簡單介紹下項目(由於重新基於模塊化設計了整個項目,所以目前整個項目功能不多)

1.Asp.Net Core 3.1.2+MSSQL2019(LINUX版)

2.中間件涉及Redis、RabbitMQ等

3.完全模塊化的設計,支持每個模塊有獨立的靜態資源文件

github開源地址:

https://github.com/yupingyong/mango

上一張項目結構圖:

 

 

 上圖中 Modules目錄下放的項目的模塊

Mango.WebHost 承載整個項目運行

Mango.Framework 封裝整個項目模塊化核心

下面我會分享實現模塊化的幾個核心要點,更詳細的我會在後續的博文中陸續發佈.

框架如何去加載所寫的模塊這是最核心的問題之一,好在Asp.Net Core MVC為模塊化提供了一個部件管理類

Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartManager

 它支持從外部DLL程序集加載組件以及組件的管理.不過要從外部組件去獲取哪些是組件我們需要藉助一個工廠類ApplicationPartFactory,這個類支持從外部程序集得到對應的控制器信息,核心代碼如下:

 1         /// <summary>   2         /// 向MVC模塊添加外部應用模塊組件   3         /// </summary>   4         /// <param name="mvcBuilder"></param>   5         /// <param name="assembly"></param>   6         private static void AddApplicationPart(IMvcBuilder mvcBuilder, Assembly assembly)   7         {   8             var partFactory = ApplicationPartFactory.GetApplicationPartFactory(assembly);   9             foreach (var part in partFactory.GetApplicationParts(assembly))  10             {  11                 mvcBuilder.PartManager.ApplicationParts.Add(part);  12             }  13  14             var relatedAssemblies = RelatedAssemblyAttribute.GetRelatedAssemblies(assembly, throwOnError: false);  15             foreach (var relatedAssembly in relatedAssemblies)  16             {  17                 partFactory = ApplicationPartFactory.GetApplicationPartFactory(relatedAssembly);  18                 foreach (var part in partFactory.GetApplicationParts(relatedAssembly))  19                 {  20                     mvcBuilder.PartManager.ApplicationParts.Add(part);  21                     mvcBuilder.PartManager.ApplicationParts.Add(new CompiledRazorAssemblyPart(relatedAssembly));  22                 }  23             }  24         }

上面的代碼展示了如何加載控制器信息,但是視圖文件在項目生成的時候是單獨的*.Views.dll文件,我們接下來介紹如何加載視圖文件,同樣還是用到了ApplicationPartManager類

mvcBuilder.PartManager.ApplicationParts.Add(new CompiledRazorAssemblyPart(module.ViewsAssembly));

new一個CompiledRazorAssemblyPart對象表示添加進去的是視圖編譯文件,完整的核心代碼

 1         /// <summary>   2         /// 添加MVC組件   3         /// </summary>   4         /// <param name="services"></param>   5         /// <returns></returns>   6         public static IServiceCollection AddCustomizedMvc(this IServiceCollection services)   7         {   8             services.AddSession();   9  10             var mvcBuilder = services.AddControllersWithViews(options=> {  11                 //添加訪問授權過濾器  12                 options.Filters.Add(new AuthorizationComponentFilter());  13             })  14                 .AddJsonOptions(options=> {  15                     options.JsonSerializerOptions.Converters.Add(new DateTimeToStringConverter());  16                 });  17             foreach (var module in GlobalConfiguration.Modules)  18             {  19                 if (module.IsApplicationPart)  20                 {  21                     if (module.Assembly != null)  22                         AddApplicationPart(mvcBuilder, module.Assembly);  23                     if (module.ViewsAssembly != null)  24                         mvcBuilder.PartManager.ApplicationParts.Add(new CompiledRazorAssemblyPart(module.ViewsAssembly));  25                 }  26             }  27             return services;  28         }

那如何去加載程序集呢?這裡我使用了自定義的ModuleAssemblyLoadContext去加載程序集,這個類繼承自AssemblyLoadContext(它支持卸載加載過的程序集,但是部件添加到MVC中時,好像不支持動態卸載會出現異常,可能是我還沒研究透吧)

 1 using System;   2 using System.Collections.Generic;   3 using System.Linq;   4 using System.Threading.Tasks;   5 using System.Reflection;   6 using System.Runtime.CompilerServices;   7 using System.Runtime.Loader;   8   9 namespace Mango.Framework.Module  10 {  11     public class ModuleAssemblyLoadContext : AssemblyLoadContext  12     {  13         public ModuleAssemblyLoadContext() : base(true)  14         {  15         }  16     }  17 }

在使用ModuleAssemblyLoadContext類加載程序集時,先使用FileStream把程序集文件讀取出來(這樣能夠避免文件一直被佔用,方便開發中編譯模塊時報文件被佔用的異常),加載文件路徑時需要注意的問題一定要使用/(在windows server下沒問題,但是如果在linux下部署就會出現問題),代碼如下:

 1         /// <summary>   2         /// 添加模塊   3         /// </summary>   4         /// <param name="services"></param>   5         /// <param name="contentRootPath"></param>   6         /// <returns></returns>   7         public static IServiceCollection AddModules(this IServiceCollection services, string contentRootPath)   8         {   9             try  10             {  11                 GlobalConfiguration.Modules = _moduleConfigurationManager.GetModules();  12                 ModuleAssemblyLoadContext context = new ModuleAssemblyLoadContext();  13                 foreach (var module in GlobalConfiguration.Modules)  14                 {  15                     var dllFilePath = Path.Combine(contentRootPath, $@"Modules/{module.Id}/{module.Id}.dll");  16                     var moduleFolder = new DirectoryInfo(dllFilePath);  17                     if (File.Exists(moduleFolder.FullName))  18                     {  19                         using FileStream fs = new FileStream(moduleFolder.FullName, FileMode.Open);  20                         module.Assembly = context.LoadFromStream(fs);  21                         //  22                         RegisterModuleInitializerServices(module, ref services);  23                     }  24                     else  25                     {  26                         _logger.Warn($"{dllFilePath} file is not find!");  27                     }  28                     //處理視圖文件程序集加載  29                     var viewsFilePath = Path.Combine(contentRootPath, $@"Modules/{module.Id}/{module.Id}.Views.dll");  30                     moduleFolder = new DirectoryInfo(viewsFilePath);  31                     if (File.Exists(moduleFolder.FullName))  32                     {  33                         using FileStream viewsFileStream = new FileStream(moduleFolder.FullName, FileMode.Open);  34                         module.ViewsAssembly = context.LoadFromStream(viewsFileStream);  35                     }  36                     else  37                     {  38                         _logger.Warn($"{viewsFilePath} file is not find!");  39                     }  40                 }  41             }  42             catch (Exception ex)  43             {  44                 _logger.Error(ex);  45             }  46             return services;  47         }

上面簡單介紹了如何利用MVC自帶的部件管理類去加載外部程序集,這裡需要說明的一點的是每個模塊我們採用創建區域的方式去區分模塊,如下圖展示的賬號模塊結構

 

 

 基於模塊化開發我們可能碰到一個比較常見的需求就是,如果每個模塊需要擁有自己獨立的靜態資源文件呢?這種情況如何去解決呢?

好在MVC框架也提供了一個靜態資源配置方法UseStaticFiles,我們在Configure方法中啟用靜態資源組件時,可以自定義設置靜態文件訪問的路徑,設置代碼如下

 1             //設置每個模塊約定的靜態文件目錄   2             foreach (var module in GlobalConfiguration.Modules)   3             {   4                 if (module.IsApplicationPart)   5                 {   6                     var modulePath = $"{env.ContentRootPath}/Modules/{module.Id}/wwwroot";   7                     if (Directory.Exists(modulePath))   8                     {   9                         app.UseStaticFiles(new StaticFileOptions()  10                         {  11                             FileProvider = new PhysicalFileProvider(modulePath),  12                             RequestPath = new PathString($"/{module.Name}")  13                         });  14                     }  15                 }  16             }

上述代碼片段中我們能夠看到通過new StaticFileOptions()添加配置項, StaticFileOptions中有兩個重要的屬性,只需要配置好這兩個就能滿足基本需求了

FileProvider:該屬性表示文件的實際所在目錄(如:{env.ContentRootPath}/Modules/Mango.Module.Account/wwwroot)

RequestPath:該屬性表示文件的請求路徑(如 /account/test.js 這樣訪問到就是 {env.ContentRootPath}/Modules/Mango.Module.Account/wwwroot下的test.js文件)

這篇博文我就暫時只做一個模塊化開發實現的核心代碼展示和說明,更具體的只能在接下來的博文中展示了.

其實我也開發了一個前後分離的,只剩下鑒權,實現的核心和上面所寫的一樣,這裡我就只把開源地址分享出來,我後面還是會用業餘時間來繼續完成它

https://github.com/yupingyong/mango-open

該項目我已經在linux 上使用docker容器部署了,具體地址我就不發佈了(避免打廣告的嫌疑,我截幾張效果圖)

 

 

 

 

 

 結語:這個項目我會一個更新下去,接下去這個框架會向DDD發展.

因為喜歡.net 技術棧,所以願意在開發社區分享我的知識成果,也想向社區的人學習更好的編碼風格,更高一層編程技術.