1. 程式人生 > >25、ASP.NET MVC入門到精通——Spring.net-業務層倉儲

25、ASP.NET MVC入門到精通——Spring.net-業務層倉儲

上一節,我們已經把專案框架的雛形搭建好了,那麼現在我來開始業務實現,在業務實現的過程當中,不斷的來完善我們現有的框架。

1、假設我們來做一個使用者登入的業務

那麼我們可以現在IDAL專案中定義的的介面IOu_UserInfoDAL,注意是部分類partial,為了方便管理,把這些擴充套件的部分介面都統一放到資料夾ExtensionIDAL中進行管理,注意名稱空間要和之前的部分介面一致。

using Model;
namespace
IDAL { public partial interface IOu_UserInfoDAL { Ou_UserInfo GetUserInfoByName(
string loginName); } }

2、DAL專案中,新建資料夾ExtensionDAL,資料夾下面新建部分類Ou_UserInfoDAL

using IDAL;
using Model;

namespace DAL
{
    public partial class Ou_UserInfoDAL : IOu_UserInfoDAL
    {
       public Ou_UserInfo GetUserInfoByName(string loginName)
        {
            return base.GetListBy(x => x.uLoginName == loginName).FirstOrDefault();
        }
    }
}

3、IBLL專案新建資料夾ExtensionIBLL,資料夾下面新建IOu_UserInfoBLL介面

using Model;

namespace IBLL
{
    public partial interface IOu_UserInfoBLL
    {
        Ou_UserInfo Login(string strName, string strPwd);
    }
}

BLL專案中新建資料夾ExtensionBLL,資料夾下面新建Ou_UserInfoBLL類

using Model;
using IBLL;

namespace
BLL { public partial class Ou_UserInfoBLL : IOu_UserInfoBLL { /// <summary> /// 登陸 /// </summary> /// <param name="strName"></param> /// <param name="strPwd"></param> /// <returns></returns> public Ou_UserInfo Login(string strName, string strPwd) { //1.呼叫業務層方法 根據登陸名查詢 Ou_UserInfo usr = base.GetListBy(u => u.uLoginName == strName).FirstOrDefault(); //2.判斷是否登陸成功 return null; } } }

我們下載下來spring.net包,然後把Spring.Core.dll 、和 Spring.Web.dll、Common.Logging.dll拷貝過來。在Web專案中新增一個Lib資料夾用來存放第三方的dll。

DI專案中,新增這兩個dll的引用,然後新建類SpringHelper

using Spring.Context;
using Spring.Context.Support;

namespace DI
{
    public static class SpringHelper
    {
        #region 1.0 Spring容器上下文 -IApplicationContext SpringContext
        /// <summary>
        /// Spring容器上下文
        /// </summary>
        private static IApplicationContext SpringContext
        {
            get
            {
                return ContextRegistry.GetContext();
            }
        }
        #endregion

        #region 2.0 獲取配置檔案 配置的 物件 +T GetObject<T>(string objName) where T : class
        /// <summary>
        /// 獲取配置檔案 配置的 物件
        /// </summary>
        /// <typeparam name="T"></typeparam>
        /// <param name="objName"></param>
        /// <returns></returns>
        public static T GetObject<T>(string objName) where T : class
        {
            return (T)SpringContext.GetObject(objName);
        }
        #endregion
    }

5、修改Web專案中的Web.config檔案,新增Spring配置

   <!-- Spring 的配置 -->  
   <sectionGroup name="spring">  
     <section name="context" type="Spring.Context.Support.WebContextHandler, Spring.Web"/>  
    <!-- 支援在 web.config 中定義物件 -->  
     <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core" />  
   </sectionGroup>  
  </configSections>
  <spring>
    <context>
      <resource uri="~/Config/objects.xml"/>
    </context>
  </spring>

Web專案中建立一個名為 Config 的資料夾,以儲存獨立的配置檔案

<?xml version="1.0" encoding="utf-8" ?>
<objects xmlns="http://www.springframework.net">
  <object id="Ou_UserInfo" type="BLL.Ou_UserInfo,BLL" singleton="false"></object>
  <object id="BLLSession" type="BLL.BLLSession,BLL" singleton="false"></object>
  <object id="DBSessFactory" type="DAL.DBSessionFactory,DAL"></object>
</objects>

 修改BaseBLL.cs

        #region 資料倉儲 屬性 + IDBSession DBSession
        /// <summary>
        /// 資料倉儲 屬性
        /// </summary>
        public IDAL.IDBSession DBSession
        {
            get
            {
                if (iDbSession == null)
                {
                    ////1.讀取配置檔案
                    //string strFactoryDLL = Common.ConfigurationHelper.AppSetting("DBSessionFatoryDLL");
                    //string strFactoryType = Common.ConfigurationHelper.AppSetting("DBSessionFatory");
                    ////2.1通過反射建立 DBSessionFactory 工廠物件
                    //Assembly dalDLL = Assembly.LoadFrom(strFactoryDLL);
                    //Type typeDBSessionFatory = dalDLL.GetType(strFactoryType);
                    //IDAL.IDBSessionFactory sessionFactory = Activator.CreateInstance(typeDBSessionFatory) as IDAL.IDBSessionFactory;

                    //2.根據配置檔案內容 使用 DI層裡的Spring.Net 建立 DBSessionFactory 工廠物件
                    IDAL.IDBSessionFactory sessionFactory = DI.SpringHelper.GetObject<IDAL.IDBSessionFactory>("DBSessFactory");

                    //3.通過 工廠 建立 DBSession物件
                    iDbSession = sessionFactory.GetDBSession();
                }
                return iDbSession;
            }
        }
        #endregion

 6、我們來看下控制器的呼叫

       public ActionResult Index()
       {
           //1.通過業務介面查詢資料
           var Ou_UserInfoBLL = DI.SpringHelper.GetObject<IOu_UserInfoBLL>("Ou_UserInfo");
           var userInfo= Ou_UserInfoBLL.Login("", "");
           //2.載入檢視
           return View();
       }

 我每個地方都通過DI.SpringHelper.GetObject<IOu_UserInfoBLL>("Ou_UserInfo");來呼叫是不是很不方便,那麼我們可以來建立一個業務層倉儲來統一管理這些物件的建立。

7、IBLL專案,新建T4模板IBLLSession.tt,拷貝之前IDAL中的模板IDALSession過來,稍微修改一下就可以了

<#@ template language="C#" debug="false" hostspecific="true"#>
<#@ include file="EF.Utility.CS.ttinclude"#><#@ output extension=".cs"#> 
<#
CodeGenerationTools code = new CodeGenerationTools(this);
MetadataLoader loader = new MetadataLoader(this);
CodeRegion region = new CodeRegion(this, 1);
MetadataTools ef = new MetadataTools(this);
string inputFile = @"..\MODEL\OA.edmx";
EdmItemCollection ItemCollection = loader.CreateEdmItemCollection(inputFile);
string namespaceName = code.VsNamespaceSuggestion();
EntityFrameworkTemplateFileManager fileManager = EntityFrameworkTemplateFileManager.Create(this);
#>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace IBLL
{
public partial interface IBLLSession
 {
<#
    // Emit Entity Types
   foreach (EntityType entity in ItemCollection.GetItems<EntityType>().OrderBy(e => e.Name))
   {#>
    I<#=entity.Name#>BLL I<#=entity.Name#>BLL{get;set;}
 <#}#>
 }
}
View Code

8、BLL專案,新建T4模板BLLSession.tt,拷貝之前DAL中的模板DALSession過來,稍微修改一下就可以了

<#@ template language="C#" debug="false" hostspecific="true"#>
<#@ include file="EF.Utility.CS.ttinclude"#><#@ output extension=".cs"#> 
<#
CodeGenerationTools code = new CodeGenerationTools(this);
MetadataLoader loader = new MetadataLoader(this);
CodeRegion region = new CodeRegion(this, 1);
MetadataTools ef = new MetadataTools(this);
string inputFile = @"..\MODEL\OA.edmx";
EdmItemCollection ItemCollection = loader.CreateEdmItemCollection(inputFile);
string namespaceName = code.VsNamespaceSuggestion();
EntityFrameworkTemplateFileManager fileManager = EntityFrameworkTemplateFileManager.Create(this);
#>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using IBLL;

namespace BLL
{
public partial class BLLSession:IBLLSession
{
<#
int index=0;
    // Emit Entity Types
foreach (EntityType entity in ItemCollection.GetItems<EntityType>().OrderBy(e => e.Name))
{
index++;
#>
    #region <#=index #> 資料介面 I<#=entity.Name#>BLL
   I<#=entity.Name#>BLL i<#=entity.Name#>BLL;
  public I<#=entity.Name#>BLL I<#=entity.Name#>BLL{
   get
   {
   if(i<#=entity.Name#>BLL==null)
      i<#=entity.Name#>BLL=new <#=entity.Name#>BLL();
      return  i<#=entity.Name#>BLL;
   }
   set
   {
    i<#=entity.Name#>BLL=value;
   }
   }
   #endregion

<#}#>
}
}
View Code

9、業務層倉儲建立好了,現在我們表現層來呼叫業務層倉儲的時候,每次又要去建立一個業務層物件,同樣的,我們可以建立一個表現層上下文來統一管理業務層物件的建立。在UI目錄下面,新增類庫專案Web.Helper,新增對IBLL和DI專案的引用,新建OperateContext.cs

using DI;
using IBLL;

namespace Web.Helper
{
    public class OperateContext
    {
        public static IBLLSession _IBLLSession = SpringHelper.GetObject<IBLLSession>("BLLSession");
    }
}

10、修改控制器呼叫

using IBLL;
using Web.Helper;
public ActionResult Index() { var userInfo = OperateContext._IBLLSession.IOu_UserInfoBLL.Login("", ""); //2.載入檢視 return View(); }

現在呼叫起來是不是方便了許多。

相關推薦

25ASP.NET MVC入門精通——Spring.net-業務倉儲

上一節,我們已經把專案框架的雛形搭建好了,那麼現在我來開始業務實現,在業務實現的過程當中,不斷的來完善我們現有的框架。 1、假設我們來做一個使用者登入的業務 那麼我們可以現在IDAL專案中定義的的介面IOu_UserInfoDAL,注意是部分類partial,為了方便管理,把這些擴充套件的部分介面都統

17ASP.NET MVC入門精通——Spring.net入門

Spring.NET環境準備 下載後解壓   Spring.NET-1.3.2.7z:這個裡面有我們需要用到的所有東西。 Spring.NET-1.3.2.exe:安裝檔案 Spring.NET-1.3.2-API.chm:幫助文件 NHibernate 3.2 的下載地址:   

19ASP.NET MVC入門精通——Unity

一、IOC介紹   IOC(Inversion of Control),中文譯為控制反轉,又稱為“依賴注入”(DI =Dependence Injection)   IOC的基本概念是:不建立物件,但是描述建立它們的方式。在程式碼中不直接與物件和服務連線,但在配置檔案中描述哪一個元件需要哪一項服務。容器負

2ASP.NET MVC入門精通——Entity Framework入門

實體框架(Entity Framework)簡介 簡稱EF 與ADO.NET關係 ADO.NET Entity Framework 是微軟以 ADO.NET 為基礎所發展出來的物件關係對應 (O/R Mapping) 解決方案,早期被稱為 ObjectSpace,最新版本是EF7【CodeOnly功能得

6ASP.NET MVC入門精通——ASP.Net的兩種開發方式

目前,ASP.NET中兩種主流的開發方式是:ASP.NET Webform和ASP.NET MVC。從下圖可以看到ASP.NET WebForms和ASP.NET MVC是並行的,也就是說MVC不會取代WebForms(至少目前是這樣)而是多了一個選擇,Webform在短期之內不會消亡,儘管存在許多缺點,

8ASP.NET MVC入門精通——View(檢視)

View檢視職責是向用戶提供介面。負責根據提供的模型資料,生成準備提供給使用者的格式介面。 支援多種檢視引擎(Razor和ASPX檢視引擎是官方預設給出的,其實還支援其它N種檢視引擎,甚至你自己都可以寫一套檢視引擎) View和Action之間資料傳遞(前後臺數據傳遞)   弱型別 View

5ASP.NET MVC入門精通——NHibernate程式碼對映

使用的是xml進行orm對映,那麼這一篇就來講下程式碼對映。 新建一個抽象的資料化持久基類AbstractNHibernateDao.cs /// <summary> /// 資料持久化基本 /// </summary> ///

12ASP.NET MVC入門精通——HtmlHelper

HtmlHelper:是為了方便View的開發而產生 HtmlHelper的演變 普通首頁超級連結為:<a href="/home/index">首頁</a> 當路由改變時候則可能需要修改為:<a href="/home/index1">首頁</a&

9ASP.NET MVC入門精通——Controller(控制器)

Controller主要負責響應使用者的輸入。主要關注的是應用程式流,輸入資料的處理,以及對相關檢視(View)輸出資料的提供。 繼承自:System.Web.Mvc.Controller 一個Controller可以包含多個Action. 每一個Action都是一個方法, 返回一個Act

22ASP.NET MVC入門精通——搭建專案框架

前面的章節,說了ASP.NET MVC專案中常用的一些技術和知識點,更多的是理論上面的東西,接下來,我將通過一個簡單的OA專案來應用我們之前涉及到的一些技術,為了兼顧初學者,所以我儘量把操作步驟說得足夠詳細。(本來想用VS2015來演示MVC5開發的,無奈家裡的筆記本是11年2月份的老爺機了,一直未曾捨得

7ASP.NET MVC入門精通——第一個ASP.NET MVC程式

開發流程 新建Controller 建立Action 根據Action建立View 在Action獲取資料並生產ActionResult傳遞給View。 View是顯示資料的模板 Url請求→Controller.Action處理→View響應 url請求→Controller.Ac

3ASP.NET MVC入門精通——Entity Framework增刪改查

這裡我接上講Entity Framework入門。從網上下載Northwind資料庫,新建一個控制檯程式,然後重新新增一個ado.net實體資料模型。 EF中操作資料庫的"閘道器"(操作上下文) DBContext封裝 .NET Framework 和資料庫之間的連線。此類用作“建立”、“讀取”、“更

11ASP.NET MVC入門精通——AspnetMVC分頁

說起分頁,這基本上是我們Web開發中遇見得最多的場景,沒有之一,可即便如此,要做出比較優雅的分頁還是需要技巧的。這裡我先說一種ASP.NET MVC中很常見的一種分頁的實現方式,很low,但是很多公司的專案就是這麼用的,我現在公司的專案就是也是,有時候面對公司專案屎一樣的使用者體驗和雜亂的程式碼,真是恨不

13ASP.NET MVC入門精通——MVC請求管道

ASP.NET MVC的請求管道和ASP.NET請求管道基本上一模一樣,如果你對ASP.NET請求管道十分熟悉的話,你只要關注一下不同點。看懂下面兩張圖,你就基本上明瞭了,這兩張圖是從鄒華棟部落格上面取的。(說明:我不是給傳智帶鹽的,這圖確實畫得通俗易懂)不明白的地方,用reflector工具檢視MVC的

20ASP.NET MVC入門精通——WebAPI

微軟有了Webservice和WCF,為什麼還要有WebAPI? 用過WCF的人應該都清楚,面對那一大堆複雜的配置檔案,有時候一出問題,真的會叫人抓狂。而且供不同的客戶端呼叫不是很方便。不得不承認WCF的功能確實非常強大,可是有時候我們通常不需要那麼複雜的功能,只需要簡單的僅通過使用Http或Https

26ASP.NET MVC入門精通——後臺管理區域及分離Js壓縮cssjquery擴充套件

有好一段時間沒更新博文了,最近在忙兩件事:1、看書,學習中...2、為公司年會節目做準備,由於許久沒有練習雙截棍了,難免生疏,所以現在臨時抱佛腳。深圳最近的天氣反常,許多人感冒了,我也成為其中之一,大家注意身體... 這一篇,我來簡單的講一下接下來專案中會用到的一些雜七雜八的技術。 區域及分離

21ASP.NET MVC入門精通——ASP.NET MVC4優化

刪除無用的檢視引擎 預設情況下,ASP.NET MVCE同時支援WebForm和Razor引擎,而我們通常在同一個專案中只用到了一種檢視引擎,如Razor,那麼,我們就可以移除掉沒有使用的檢視引擎,提高View檢視的檢索效率。在沒有刪除WebForm引擎之前,檢索控制器中不存在的檢視時,我們可以從下圖看

23ASP.NET MVC入門精通——業務和資料父類及介面-T4模板

在上一篇中,我們已經把專案的基本框架搭起來了,這一篇我們就來實現業務層和資料層的父介面及父類。 1、我們先來定義一個業務層父介面IBaseBLL.cs using System; using System.Collections.Generic; using System.Linq; u

1ASP.NET MVC入門精通——新語法

在學習ASP.NET MVC之前,有必要先了解一下C#3.0所帶來的新的語法特性,這一點尤為重要,因為在MVC專案中我們利用C#3.0的新特性將會大大的提高我們的開發效率,同時,在MVC專案中你將到處可以看到C#3.0新特性的身影。其本質都是“語法糖”,由編譯器在編譯時轉成原始語法。 目錄 自動屬

10ASP.NET MVC入門精通——Model(模型)和驗證

模型就是處理業務,想要儲存、建立、更新、刪除的物件。 註解(通過特性實現) DisplayName Required StringLength(20,MinimumLength=2) DataType(System.ComponentModel.DataAnnotations.Dat