[.NET领域驱动设计实战系列]专题二:结合领域驱动设计的面向服务架构来搭建网上书店...
一、前言
在前面專題一中,我已經介紹了我寫這系列文章的初衷了。由于dax.net中的DDD框架和Byteart Retail案例并沒有對其形成過程做一步步分析,而是把整個DDD的實現案例展現給我們,這對于一些剛剛接觸領域驅動設計的朋友可能會非常迷茫,從而覺得領域驅動設計很難,很復雜,因為學習中要消化一個整個案例的知識,這樣未免很多人消化不了就打退堂鼓,就不繼續研究下去了,所以這樣也不利于DDD的推廣。然而本系列可以說是剛接觸領域驅動設計朋友的福音,本系列將結合領域驅動設計的思想來一步步構建一個網上書店,從而讓大家學習DDD不再枯燥和可以看到一個DDD案例的形成歷程。最后,再DDD案例完成之后,將從中抽取一個領域驅動的框架,從而大家也可以看到一個DDD框架的形成歷程,這樣就不至于一下子消化一整個框架和案例的知識,而是一步步消化。接下來,該專題將介紹的是:結合領域驅動設計的SOA架構來構建網上書店,本專題中并沒有完成網上書店的所有頁面和覆蓋DDD中的所有內容,而只是一部分,后面的專題將會在本專題的網上書店進行一步步完善,通過一步步引入DDD的內容和重構來完成整個項目。
二、DDD分層架構
從概念上說,領域驅動設計架構主要分為四層,分別為:基礎設施層、領域層、應用層和表現層。
- 基礎結構層:該層專為其他各層提供各項通用技術框架支持。像一些配置文件處理、緩存處理,事務處理等都可以放在這里。
- 領域層:簡單地說就是業務所涉及的領域對象(包括實體、值對象)、領域服務等。該層就是所謂的領域模型了,領域驅動設計提倡是富領域模型,富領域模型指的是:盡量將業務邏輯放在歸屬于它的領域對象中。而之前的三層架構中的領域模型都是貧血領域模型,因為在三層中的領域模型只包含業務屬性,而不包含任何業務邏輯。本專題的網上書店領域模型目前還沒有包含任何業務邏輯,在后期將會完善。
實體可以認為對應于數據庫的表,而值對象一般定義在實體類中。
- 應用層:該層不包含任何領域邏輯,它主要用來對任務進行協調,它構建了表現層和領域層的橋梁。SOA架構就是在該層進行實現的。
- 表現層:指的是用戶界面,例如Asp.net mvc網站,WPF、Winform和控制臺等。它主要用來想用戶展現內容。
下面用一個圖來形象展示DDD的分層架構:
本系列介紹的領域驅動設計實戰,則自然少了領域驅動設計分層架構的實現了,上面簡單介紹了領域驅動的分層架構,接下來將詳細介紹在網上書店中各層是如何去實現的。
三、網上書店領域模型層的實現
? 在應用領域驅動設計的思想來構建一個項目,則第一步就是了解需求,明白項目的業務邏輯,了解清楚業務邏輯后,則把業務邏輯抽象成領域對象,領域對象所放在的位置也就是領域模型層了。該專題介紹的網上書店主要完成了商品所涉及的頁面,包括商品首頁,單個商品的詳細信息等。所以這里涉及的領域實體包括2個,一個是商品類,另外一個就是類別類,因為在商品首頁中,需要顯示所有商品的類別。在給出領域對象的實現之前,這里需要介紹領域層中所涉及的幾個概念。
- 聚合根:聚合根也是實體,但與實體不同的是,聚合根是由實體和值對象組成的系統邊界對象。舉個例子來說,例如訂單和訂單項,根據業務邏輯,我們需要跟蹤訂單和訂單項的狀態,所以設計它們都為實體,但只有訂單才是聚合根對象,而訂單項不是,因為訂單項只有在訂單中才有意義,意思就是說:用戶不能直接看到訂單項,而是先查詢到訂單,然后再看到該訂單下的訂單項。所以聚合根可以理解為用戶直接操作的對象。在這里商品類和類別類都是一個聚合根。
根據面向接口編程原則,我們在領域模型中應該定義一個實體接口和聚合根接口,而因為聚合根也是屬于實體,所以聚合根接口繼承于實體接口,而商品類和類別類都是聚合根,所以它們都實現聚合根接口。如果像訂單項只是實體不是聚合根的類則實現實體接口。有了上面的分析,則領域模型層的實現也就自然出來了,下面是領域對象的具體實現:
// 領域實體接口public interface IEntity{// 當前領域實體的全局唯一標識Guid Id { get; }} // 聚合根接口,繼承于該接口的對象是外部唯一操作的對象public interface IAggregateRoot : IEntity{} // 商品類public class Product : AggregateRoot{public string Name { get; set; }public string Description { get; set; }public decimal UnitPrice { get; set; }public string ImageUrl { get; set; }public bool IsNew{ get; set; }public override string ToString(){return Name;}} // 類別類public class Category : AggregateRoot{public string Name { get; set; }public string Description { get; set; }public override string ToString(){return this.Name;}}另外,領域層除了實現領域對象外,還需要定義倉儲接口,而倉儲層則是對倉儲接口的實現。倉儲可以理解為在內存中維護一系列聚合根的集合,而聚合根不可能一直存在于內存中,當它不活動時會被持久化到數據中。而倉儲層完成的任務是持久化聚合根對象到數據或從數據庫中查詢存儲的對象來重新創建領域對象。
倉儲層有幾個需要明確的概念:
介紹完倉儲之后,接下來就在領域層中定義倉儲接口,因為本專題中涉及到2個聚合根,則自然需要實現2個倉儲接口。根據面向接口編程原則,我們讓這2個倉儲接口都實現與一個公共的接口:IRepository接口。另外倉儲接口還需要定義一個倉儲上下接口,因為在Entity Framework中有一個DbContex類,所以我們需要定義一個EntityFramework上下文對象來對DbContex進行包裝。也就自然有了倉儲上下文接口了。經過上面的分析,倉儲接口的實現也就一目了然了。
// 倉儲接口public interface IRepository<TAggregateRoot> where TAggregateRoot :class, IAggregateRoot{void Add(TAggregateRoot aggregateRoot);IEnumerable<TAggregateRoot> GetAll();// 根據聚合根的ID值,從倉儲中讀取聚合根 TAggregateRoot GetByKey(Guid key);} public interface IProductRepository : IRepository<Product>{IEnumerable<Product> GetNewProducts(int count = 0);} public interface IProductRepository : IRepository<Product>{IEnumerable<Product> GetNewProducts(int count = 0);} // 倉儲上下文接口public interface IRepositoryContext{}這樣我們就完成了領域層的搭建了,接下面,我們就需要對領域層中定義的倉儲接口進行實現了。我這里將倉儲接口的實現單獨弄出了一個層,當然你也可以放在基礎設施層中的Repositories文件夾中。不過我看很多人都直接拎出來的。我這里也是直接作為一個層。
四、網上書店Repository(倉儲)層的實現
? 定義完倉儲接口之后,接下來就是在倉儲層實現這些接口,完成領域對象的序列化。首先是產品倉儲的實現:
// 商品倉儲的實現public class ProductRepository : IProductRepository{#region Private Fieldsprivate readonly IEntityFrameworkRepositoryContext _efContext;#endregion #region Public Propertiespublic IEntityFrameworkRepositoryContext EfContext{get { return this._efContext; }}#endregion #region Ctorpublic ProductRepository(IRepositoryContext context){var efContext = context as IEntityFrameworkRepositoryContext;if (efContext != null)this._efContext = efContext;}#endregion public IEnumerable<Product> GetNewProducts(int count = 0){var ctx = this.EfContext.DbContex as OnlineStoreDbContext;if (ctx == null)return null;var query = from p in ctx.Productswhere p.IsNew == trueselect p;if (count == 0)return query.ToList();elsereturn query.Take(count).ToList();}public void Add(Product aggregateRoot){throw new NotImplementedException();}public IEnumerable<Product> GetAll(){var ctx = this.EfContext.DbContex as OnlineStoreDbContext;if (ctx == null)return null;var query = from p in ctx.Productsselect p;return query.ToList();}public Product GetByKey(Guid key){return EfContext.DbContex.Products.First(p => p.Id == key);}} View Code接下來是類別倉儲的實現:
// 類別倉儲的實現public class CategoryRepository :ICategoryRepository{#region Private Fieldsprivate readonly IEntityFrameworkRepositoryContext _efContext;public CategoryRepository(IRepositoryContext context){var efContext = context as IEntityFrameworkRepositoryContext;if (efContext != null)this._efContext = efContext;}#endregion#region Public Propertiespublic IEntityFrameworkRepositoryContext EfContext{get { return this._efContext; }}#endregion public void Add(Category aggregateRoot){throw new System.NotImplementedException();}public IEnumerable<Category> GetAll(){var ctx = this.EfContext.DbContex as OnlineStoreDbContext;if (ctx == null)return null;var query = from c in ctx.Categoriesselect c;return query.ToList();}public Category GetByKey(Guid key){return this.EfContext.DbContex.Categories.First(c => c.Id == key);}} View Code由于后期除了實現基于EF倉儲的實現外,還想實現基于MongoDb倉儲的實現,所以在倉儲層中創建了一個EntityFramework的文件夾,并定義了一個IEntityFrameworkRepositoryContext接口來繼承于IRepositoryContext接口,由于EF中持久化數據主要是由DbContext對象來完成了,為了有自己框架模型,我在這里定義了OnlineStoreDbContext來繼承DbContext,從而用OnlineStoreDbContext來對DbContext進行了一次包裝。經過上面的分析之后,接下來對于實現也就一目了然了。首先是OnlineStoreDbContext類的實現:
public sealed class OnlineStoreDbContext : DbContext{#region Ctorpublic OnlineStoreDbContext(): base("OnlineStore"){this.Configuration.AutoDetectChangesEnabled = true;this.Configuration.LazyLoadingEnabled = true;}#endregion #region Public Propertiespublic DbSet<Product> Products { get { return this.Set<Product>(); }}public DbSet<Category> Categories{get { return this.Set<Category>(); }}// 后面會繼續添加屬性,針對每個聚合根都會定義一個DbSet的屬性// ...#endregion}接下來就是IEntityFrameworkRepositoryContext接口的定義以及它的實現了。具體代碼如下所示:
public interface IEntityFrameworkRepositoryContext : IRepositoryContext{#region PropertiesOnlineStoreDbContext DbContex { get; }#endregion } public class EntityFrameworkRepositoryContext : IEntityFrameworkRepositoryContext{// 引用我們定義的OnlineStoreDbContext類對象public OnlineStoreDbContext DbContex{get { return new OnlineStoreDbContext(); }}}這樣,我們的倉儲層也就完成了。接下來就是應用層的實現。
五、網上書店應用層的實現
? 應用層應用了面向服務結構進行實現,采用了微軟面向服務的實現WCF來完成的。網上書店的整個架構完全遵循著領域驅動設計的分層架構,用戶通過UI層(這里實現的是Web頁面)來進行操作,然后UI層調用應用層來把服務進行分發,通過調用基礎設施層中倉儲實現來對領域對象進行持久化和重建。這里應用層主要采用WCF來實現的,其中引用了倉儲接口。針對服務而言,首先就需要定義服務契約了,這里我把服務契約的定義單獨放在了一個服務契約層,當然你也可以在應用層中創建一個服務契約文件夾。首先就去看看服務契約的定義:
// 商品服務契約的定義[ServiceContract(Namespace="")]public interface IProductService{#region Methods// 獲得所有商品的契約方法 [OperationContract]IEnumerable<Product> GetProducts();// 獲得新上市的商品的契約方法 [OperationContract]IEnumerable<Product> GetNewProducts(int count);// 獲得所有類別的契約方法 [OperationContract]IEnumerable<Category> GetCategories();// 根據商品Id來獲得商品的契約方法 [OperationContract]Product GetProductById(Guid id);#endregion} View Code接下來就是服務契約的實現,服務契約的實現我放在應用層中,具體的實現代碼如下所示:
// 商品服務的實現public class ProductServiceImp : IProductService{#region Private Fieldsprivate readonly IProductRepository _productRepository;private readonly ICategoryRepository _categoryRepository;#endregion #region Ctorpublic ProductServiceImp(IProductRepository productRepository, ICategoryRepository categoryRepository){_categoryRepository = categoryRepository;_productRepository = productRepository;}#endregion#region IProductService Memberspublic IEnumerable<Product> GetProducts(){return _productRepository.GetAll();}public IEnumerable<Product> GetNewProducts(int count){return _productRepository.GetNewProducts(count);}public IEnumerable<Category> GetCategories(){return _categoryRepository.GetAll();}public Product GetProductById(Guid id){var product = _productRepository.GetByKey(id);return product;}#endregion } View Code最后就是創建WCF服務來調用服務契約實現了。創建一個后綴為.svc的WCF服務文件,WCF服務的具體實現如下所示:
// 商品WCF服務public class ProductService : IProductService{// 引用商品服務接口private readonly IProductService _productService;public ProductService(){_productService = ServiceLocator.Instance.GetService<IProductService>();}public IEnumerable<Product> GetProducts(){return _productService.GetProducts();}public IEnumerable<Product> GetNewProducts(int count){return _productService.GetNewProducts(count);}public IEnumerable<Category> GetCategories(){return _productService.GetCategories();}public Product GetProductById(Guid id){return _productService.GetProductById(id);}}到這里我們就完成了應用層面向服務架構的實現了。從商品的WCF服務實現可以看到,我們有一個ServiceLocator的類。這個類的實現采用服務定位器模式,關于該模式的介紹可以參考dax.net的服務定位器模式的介紹。該類的作用就是調用方具體的實例,簡單地說就是通過服務接口定義具體服務接口的實現,將該實現返回給調用者的。這個類我這里放在了基礎設施層來實現。目前基礎設施層只有這一個類的實現,后期會繼續添加其他功能,例如緩存功能的支持。
另外,在這里使用了Unity依賴注入容器來對接口進行注入。主要的配置文件如下所示:
<configuration><configSections><section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework"/><section name="unity" type="Microsoft.Practices.Unity.Configuration.UnityConfigurationSection, Microsoft.Practices.Unity.Configuration"/></configSections><!-- Entity Framework 配置信息--><entityFramework><defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"><parameters><parameter value="Data Source=(LocalDb)\v11.0; Initial Catalog=OnlineStore; Integrated Security=True; Connect Timeout=120; MultipleActiveResultSets=True; AttachDBFilename=|DataDirectory|\OnlineStore.mdf"/></parameters></defaultConnectionFactory></entityFramework><!--Unity的配置信息--><unity xmlns="http://schemas.microsoft.com/practices/2010/unity"><container><!--倉儲接口的注冊--><register type="OnlineStore.Domain.Repositories.IRepositoryContext, OnlineStore.Domain" mapTo="OnlineStore.Repositories.EntityFramework.EntityFrameworkRepositoryContext, OnlineStore.Repositories"/><register type="OnlineStore.Domain.Repositories.IProductRepository, OnlineStore.Domain" mapTo="OnlineStore.Repositories.EntityFramework.ProductRepository, OnlineStore.Repositories"/><register type="OnlineStore.Domain.Repositories.ICategoryRepository, OnlineStore.Domain" mapTo="OnlineStore.Repositories.EntityFramework.CategoryRepository, OnlineStore.Repositories"/><!--應用服務的注冊--><register type="OnlineStore.ServiceContracts.IProductService, OnlineStore.ServiceContracts" mapTo="OnlineStore.Application.ServiceImplementations.ProductServiceImp, OnlineStore.Application"/></container></unity><appSettings><add key="aspnet:UseTaskFriendlySynchronizationContext" value="true"/></appSettings><system.web><compilation debug="true" targetFramework="4.5"/><httpRuntime targetFramework="4.5.1"/></system.web><!--WCF 服務的配置信息--><system.serviceModel><behaviors><serviceBehaviors><behavior name=""><serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/><serviceDebug includeExceptionDetailInFaults="true"/></behavior></serviceBehaviors></behaviors><services><service name="OnlineStore.Application.ServiceImplementations.ProductServiceImp" behaviorConfiguration=""><endpoint address="" binding="wsHttpBinding" contract="OnlineStore.ServiceContracts.IProductService"/><!--<endpoint contract="IMetadataExchange" binding="mexHttpBinding" address="mex" />--></service></services><serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true"/></system.serviceModel><system.webServer><modules runAllManagedModulesForAllRequests="true"/><!--To browse web app root directory during debugging, set the value below to true.Set to false before deployment to avoid disclosing web app folder information.--><directoryBrowse enabled="true"/></system.webServer> </configuration> View Code六、基礎設施層的實現
基礎設施層在本專題中只包含了服務定位器的實現,后期會繼續添加對其他功能的支持,ServiceLocator類的具體實現如下所示:
// 服務定位器的實現public class ServiceLocator : IServiceProvider{private readonly IUnityContainer _container;private static ServiceLocator _instance = new ServiceLocator();private ServiceLocator(){_container = new UnityContainer();_container.LoadConfiguration();}public static ServiceLocator Instance{get { return _instance; }}#region Public Methodspublic T GetService<T>(){return _container.Resolve<T>();}public IEnumerable<T> ResolveAll<T>(){return _container.ResolveAll<T>();}public T GetService<T>(object overridedArguments){var overrides = GetParameterOverrides(overridedArguments);return _container.Resolve<T>(overrides.ToArray());}public object GetService(Type serviceType, object overridedArguments){var overrides = GetParameterOverrides(overridedArguments);return _container.Resolve(serviceType, overrides.ToArray());}#endregion #region Private Methodsprivate IEnumerable<ParameterOverride> GetParameterOverrides(object overridedArguments){var overrides = new List<ParameterOverride>();var argumentsType = overridedArguments.GetType();argumentsType.GetProperties(BindingFlags.Public | BindingFlags.Instance).ToList().ForEach(property =>{var propertyValue = property.GetValue(overridedArguments, null);var propertyName = property.Name;overrides.Add(new ParameterOverride(propertyName, propertyValue));});return overrides;}#endregion #region IServiceProvider Memberspublic object GetService(Type serviceType){return _container.Resolve(serviceType);}#endregion } View Code七、UI層的實現
根據領域驅動的分層架構,接下來自然就是UI層的實現了,這里UI層的實現采用Asp.net MVC 技術來實現的。UI層主要包括商品首頁的實現,和詳細商品的實現,另外還有一些附加頁面的實現,例如,關于頁面,聯系我們頁面等。關于UI層的實現,這里就不一一貼出代碼實現了,大家可以在最后的源碼鏈接自行下載查看。
八、系統總體架構
經過上面的所有步驟,本專題中的網上書店構建工作就基本完成了,接下來我們來看看網上書店的總體架構圖(這里架構圖直接借鑒了dax.net的圖了,因為本系列文章也是對其Byteart Retail項目的剖析過程):
最后附上整個解決方案的結構圖:
九、網上書店運行效果
實現完之后,大家是不是都已經迫不及待地想看到網上書店的運行效果呢?下面就為大家來揭曉,目前網上書店主要包括2個頁面,一個是商品首頁的展示和商品詳細信息的展示。首先看下商品首頁的樣子吧:
圖書的詳細信息頁面:
十、總結
到這里,本專題的內容就介紹完了, 本專題主要介紹面向領域驅動設計的分層架構和面向服務架構。然后結合它們在網上書店中進行實戰演練。在后面的專題中我會在該項目中一直進行完善,從而形成一個完整了DDD案例。在接下來的專題會對倉儲的實現應用規約模式,在應用之前,我會先寫一個專題來介紹規約模式來作為一個準備工作。
GitHub 開源地址:https://github.com/lizhi5753186/OnlineStore。
?
總結
以上是生活随笔為你收集整理的[.NET领域驱动设计实战系列]专题二:结合领域驱动设计的面向服务架构来搭建网上书店...的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 保障危险品的物流安全问题,大数据扮演了重
- 下一篇: 中国人工智能学会通讯——智能系统测评:挑