终于到了题目中的MVC使用StructureMap依赖注入的配置与实现了。在ASP.Net三层架构应用中StructureMap的是最老的IOC/DI工具,也就是依赖注入,很多线上的项目都使用了StructureMap,非常酷的是他是免费的,具体的IOC/DI的设计思想本篇文章不做介绍,想研究可以百度一下,资料很多,哎说道百度想起google一堆泪啊,自从google撤出中国,google是经常的无法访问,很无奈啊很无奈。

依赖注入主要有两种方式:一种是Setter and Getter,一种是构造函数方式。天屹的这套框架使用的后者Constructor构造器的方式。如果你看了前面的文章,就会发现每个Service和Controller中都会有一个构造方法,没错我们就是使用的它们,接下详细的介绍一下StructureMap是怎么在我们的项目中实现依赖注入的。

一.配置与注册Services和Repositories

首先我们告诉StructureMap,我们需要注入的是什么,本系统中需要注册的是Services和Repositories,分别注入到Controller和Service。下面是具体写法,为什么这么写,不必较真,写法是StructureMap提供给我们的,使用就好了。

查看代码    
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using StructureMap;
  7.  
  8. namespace TYStudioDemo.StructureMap
  9. {
  10.     public class BootStrapper
  11.     {
  12.         public static void ConfigureStructureMap()
  13.         {
  14.             ObjectFactory.Configure(x =>
  15.             {
  16.                 x.AddRegistry(new TYStudioDemoStructureMapRegistry());
  17.  
  18.                 x.Scan(scanner =>
  19.                 {
  20.                     scanner.Assembly("TYStudioDemo.Services");
  21.                     scanner.Assembly("TYStudioDemo.Repositories");
  22.                 });
  23.             });
  24.         }
  25.     }
  26. }

上面的代码告诉了StructureMap去哪里找我们的Service和Repositories。同时TYStudioDemoStructureMapRegistry这个类告诉了StructureMap该用哪个类去实例化我们的接口,下面是TYStudioDemoStructureMapRegistry的代码:

查看代码    
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Data;
  6. using StructureMap.Configuration.DSL;
  7. using TYStudioDemo.Models;
  8. using TYStudioDemo.DTO;
  9. using TYStudioDemo.Interfaces;
  10. using TYStudioDemo.Services;
  11. using TYStudioDemo.Repositories;
  12.  
  13. namespace TYStudioDemo.StructureMap
  14. {
  15.     public class TYStudioDemoStructureMapRegistry : Registry
  16.     {
  17.         //注册接口实际使用的实现类
  18.         public TYStudioDemoStructureMapRegistry()
  19.         {
  20.             SelectConstructor<TYEntities>(() => new TYEntities());
  21.  
  22.             //Exception Handle
  23.             For<ITYExceptionService>().Use<TYExceptionService>();
  24.  
  25.             //Services
  26.             For(typeof(ISupplierService)).Use(typeof(SupplierService));
  27.  
  28.             //Repositories
  29.             For(typeof(ISupplierRepository<>)).Use(typeof(SupplierRepository));
  30.             For(typeof(IProductRepository<>)).Use(typeof(ProductRepository));
  31.         }
  32.     }
  33. }

现在我们已经配置了StructureMap并且注册了Service和Repository,接下来该告诉系统去使用StructureMap去实例化我们的Controller。

二.创建Controller Factory

既然使用了依赖注入,Controller的实例化当然不能再用系统本身的了,所以我们需要创建一个ControllerFactory:TYStudioDemoStructureMapControllerFactory。

查看代码    
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Web.Mvc;
  7. using StructureMap;
  8.  
  9. namespace TYStudioDemo.StructureMap
  10. {
  11.     public class TYStudioDemoStructureMapControllerFactory : DefaultControllerFactory
  12.     {
  13.         protected override IController GetControllerInstance(System.Web.Routing.RequestContext requestContext, System.Type controllerType)
  14.         {
  15.             if (controllerType != null)
  16.             {
  17.                 Controller c = ObjectFactory.GetInstance(controllerType) as Controller;
  18.  
  19.                 //当返回一个错误页面,View一级异常会被触发
  20.                 c.ActionInvoker = new ErrorHandlingActionInvoker(new HandleErrorAttribute());
  21.                 return c;
  22.             }
  23.             else
  24.                 return null;
  25.         }
  26.     }
  27. }

TYStudioDemoStructureMapControllerFactory继承自DefaultControllerFactory,DefaultControllerFactory是MVC默认的Controller Factory,然后重新器获得Controller实例的方法,由StructureMap的ObjectFactory来创建实例,StructureMap会帮我们把Controller构造函数中的参数实例化。

上面的ErrorHandlingActionInvoker方法:

查看代码    
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Web.Mvc;
  6.  
  7. namespace TYStudioDemo.StructureMap
  8. {
  9.     public class ErrorHandlingActionInvoker : ControllerActionInvoker
  10.     {
  11.         private readonly IExceptionFilter filter;
  12.  
  13.         public ErrorHandlingActionInvoker(IExceptionFilter filter)
  14.         {
  15.             if (filter == null)
  16.                 throw new ArgumentNullException("Exception filter is missing");
  17.  
  18.             this.filter = filter;
  19.         }
  20.  
  21.         protected override FilterInfo GetFilters(ControllerContext controllerContext, ActionDescriptor actionDescriptor)
  22.         {
  23.             var filterInfo = base.GetFilters(controllerContext, actionDescriptor);
  24.             filterInfo.ExceptionFilters.Add(this.filter);
  25.             return filterInfo;
  26.         }
  27.     }
  28. }

Controller Factory创建ok。但是这样系统是不会使用我们自己的Controller Factory的,所以需要通知一下MVC系统。

三.配置Global.asax文件

在Application_Start()方法中也就是项目启动的时候注册StructureMap并通知系统使用我们自己的Controller Factory进行实例化Controller。

查看代码    
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Web;
  5. using System.Web.Http;
  6. using System.Web.Mvc;
  7. using System.Web.Optimization;
  8. using System.Web.Routing;
  9. using TYStudioDemo.StructureMap;
  10.  
  11. namespace TYStudioDemo.WebUI
  12. {
  13.     // Note: For instructions on enabling IIS6 or IIS7 classic mode,
  14.     // visit http://go.microsoft.com/?LinkId=9394801
  15.  
  16.     public class MvcApplication : System.Web.HttpApplication
  17.     {
  18.         protected void Application_Start()
  19.         {
  20.             AreaRegistration.RegisterAllAreas();
  21.  
  22.             WebApiConfig.Register(GlobalConfiguration.Configuration);
  23.             FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
  24.             RouteConfig.RegisterRoutes(RouteTable.Routes);
  25.             BundleConfig.RegisterBundles(BundleTable.Bundles);
  26.             AuthConfig.RegisterAuth();
  27.  
  28.             //注册StructureMap
  29.             BootStrapper.ConfigureStructureMap();
  30.  
  31.             //通过StructureMap返回Controller实例,通过构造器注入
  32.             ControllerBuilder.Current.SetControllerFactory(new TYStudioDemoStructureMapControllerFactory());
  33.         }
  34.  
  35.         protected void Application_EndRequest(object sender, EventArgs e)
  36.         {
  37.             TYStudioDemo.Models.TYEntities.Cleanup();
  38.         }
  39.     }
  40. }

ok,到此StructureMap的配置就全部完成了,接下来我们该怎么使用它呢。

文章开头已经告诉大家了我们使用Constructor构造器的方式进行依赖注入。

四.Controller的写法

既然是构造器就要写构造函数了,见下面写法:

查看代码    
  1. ISupplierService _supplierService;
  2.  
  3. public SupplierController(ITYExceptionService tyExceptionService,
  4.                             ISupplierService supplierService)
  5. {
  6.     _tyExceptionService = tyExceptionService;
  7.     _supplierService = supplierService;
  8.  
  9. }

在构造方法中加入我们要注入的Service接口,然后StructureMap就会根据上面TYStudioDemoStructureMapRegistry的配置去创建我们需要实例化的service对象了。

同样向Service中注入Repository的写法是一样的:

查看代码    
  1. ISupplierRepository<Supplier> _supplierRepository;
  2. IProductRepository<Product> _productRepository;
  3.  
  4. public SupplierService(ISupplierRepository<Supplier> supplierRepotitory,
  5.                             IProductRepository<Product> productRepository)
  6. {
  7.     _supplierRepository = supplierRepotitory;
  8.     _productRepository = productRepository;
  9. }

至此StructureMap配置与使用就全部完成了。

总结:

我们发现,我们的参数都是接口类型了,这样的好处就是将来对ISupplierService的实现不一样了,我们只需要重写写一个ISupplierService的实现了,并修改TYStudioDemoStructureMapRegistry使ISupplierService使用新的实现类,就可以了。因为我们使用的都是接口所以方法和参数都是固定的,所以呢~~ Controller中不用修改任何代码,同理Service也是一样的。这样就充分的降低了代码之间的耦合度。

下篇文章将介绍使用Enterprise Library 5.0 实现异常与日志的处理。

转自:http://www.tystudio.net/2013/04/06/mvc-structuremap-config/

StructureMap使用方法(转)的更多相关文章

  1. CSS、HTML5、JS

    [att*=value]{}包含value属性的所有元素样式.[id*=div]{} a[href$=jpg]:after{} [att^=value]{}开头字符包含value属性的所有元素样式 [ ...

  2. 用ASP.NET MVC5 +SQLSERVER2014搭建多层架构的数据库管理系统

    用http://ASP.NET MVC5 +SQLSERVER2014搭建多层架构的数据库管理系统 背景:前段时间,给一家公司做外包(就是图标是朵菊花那家).为了尽快实现交付,网上四处寻找适合中小型企 ...

  3. javaSE27天复习总结

    JAVA学习总结    2 第一天    2 1:计算机概述(了解)    2 (1)计算机    2 (2)计算机硬件    2 (3)计算机软件    2 (4)软件开发(理解)    2 (5) ...

  4. .Net中的AOP系列之《间接调用——拦截方法》

    返回<.Net中的AOP>系列学习总目录 本篇目录 方法拦截 PostSharp方法拦截 Castle DynamicProxy方法拦截 现实案例--数据事务 现实案例--线程 .Net线 ...

  5. StructureMap 代码分析之Widget 之Registry 分析 (1)

    说句实话,本人基本上没用过Structuremap,但是这次居然开始看源码了,不得不为自己点个赞.Structuremap有很多的类,其中有一个叫做Widget的概念.那么什么是Widget呢?要明白 ...

  6. StructureMap 学习笔记(1)

    前言 一个偶然的机会接触到了StructureMap,当时客户要求让程序具有较好的测试性,自然而然就想到了IOC 容器. 之后就去Google了一下, 不经意间在StackOverFlow找到一篇帖子 ...

  7. StructureMap依赖注入

    IOC:控制反转,是一种设计模式.一层含义是控制权的转移:由传统的在程序中控制依赖转移到由容器来控制:第二层是依赖注入:将相互依赖的对象分离,在spring配置文件中描述他们的依赖关系.他们的依赖关系 ...

  8. DI 依赖注入之StructureMap框架

    DI  依赖注入之StructureMap框架 一.简叙: structureMap只是DI框架中的其中之一. 二.安装及使用: 1.懒人方法: 使用MVC5项目时,可以直接在nuget程序包中安装S ...

  9. mapreduce多文件输出的两方法

    mapreduce多文件输出的两方法   package duogemap;   import java.io.IOException;   import org.apache.hadoop.conf ...

随机推荐

  1. 李洪强漫谈iOS开发[C语言-051]-判断整数位数

  2. Set

    package lis0924; //生成器导包 import java.util.HashSet; import java.util.Iterator; import java.util.Set; ...

  3. u盘安装windows系统

    使用老毛桃为例: 电脑下载老毛桃到自己电脑,插入U盘,制作U盘为启动盘. 四种安装方法: 1.win7能够使用:(win中包含iso的解压文件)解压ISO ----〉 restart win7 --- ...

  4. 导出查询结果到excle

    实现功能 输入查询结果 点击导出查询结果 导出到excle表.

  5. bzoj3991: [SDOI2015]寻宝游戏--DFS序+LCA+set动态维护

    之前貌似在hdu还是poj上写过这道题. #include<stdio.h> #include<string.h> #include<algorithm> #inc ...

  6. 求最大连续bit数

    描述 功能: 求一个byte数字对应的二进制数字中1的最大连续数,例如3的二进制为00000011,最大连续2个1    输入: 一个byte型的数字    输出: 无     返回: 对应的二进制数 ...

  7. Android错误:W/ResourceType(2411): No package identifier when getting value for resource number 0x

    报错信息: 07-04 11:14:43.064: W/ResourceType(2411): No package identifier when getting value for resourc ...

  8. SpringMvc简单实例

    Spring MVC应用一般包括4个步骤: (1)配置web.xml,指定业务层对应的spring配置文件,定义DispatcherServlet; (2)编写处理请求的控制器 (3)编写视图对象,例 ...

  9. Python打包成exe程序

    如何把.py文件打包成.exe可执行程序. 这里选择用PyInstaller 3.0来打包,PyInstaller 3.0下载地址:https://pypi.python.org/pypi/PyIns ...

  10. 影响 PHP 行为的扩展和网络函数

    <?php /* * * 影响 PHP 行为的扩展 * PHP 选项和信息 * * assert_options — 设置/获取断言的各种标志 assert — 检查一个断言是否为 FALSE ...