MVC使用StructureMap实现依赖注入Dependency Injection_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > MVC使用StructureMap实现依赖注入Dependency Injection

MVC使用StructureMap实现依赖注入Dependency Injection

 2014/6/6 3:00:13  Darren Ji  博客园  我要评论(0)
  • 摘要:使用StructureMap也可以实现在MVC中的依赖注入,为此,我们不仅要使用StructureMap注册各种接口及其实现,还需要自定义控制器工厂,借助StructureMap来生成controller实例。有这样的一个接口:namespaceMvcApplication1{publicinterfaceIStrategy{stringGetStrategy();}}2个接口实现:namespaceMvcApplication1{publicclassAttackStrategy
  • 标签:MVC 实现 使用 Map

使用StructureMap也可以实现在MVC中的依赖注入,为此,我们不仅要使用StructureMap注册各种接口及其实现,还需要自定义控制器工厂,借助StructureMap来生成controller实例。

 

有这样的一个接口:

namespace MvcApplication1
{
    public interface IStrategy
    {
        string GetStrategy();
    }
}

 

2个接口实现:

namespace MvcApplication1
{
    public class AttackStrategy : IStrategy
    {
        public string GetStrategy()
        {
            return "进攻阵型";
        }
    }
}

和

namespace MvcApplication1
{
    public class DefenceStrategy : IStrategy
    {
        public string GetStrategy()
        {
            return "防守阵型";
        }
    }
}

 

借助StructureMap(通过NuGet安装)自定义控制器工厂:

using System.Web;
using System.Web.Mvc;
using StructureMap;

namespace MvcApplication1
{
    public class StrategyControllerFactory : DefaultControllerFactory
    {
        protected override IController GetControllerInstance(System.Web.Routing.RequestContext requestContext, System.Type controllerType)
        {
            if (controllerType == null)
            {
                throw new HttpException(404, "没有找到相关控制器");
            }
            return ObjectFactory.GetInstance(controllerType) as IController;
        }
    }
}

 

全局中注册控制器工厂以及注册接口和默认实现:

ObjectFactory.Initialize(cfg => cfg.For<IStrategy>().Use<AttackStrategy>());
ControllerBuilder.Current.SetControllerFactory(new StrategyControllerFactory());

 

HomeController中:

using System.Web.Mvc;

namespace MvcApplication1.Controllers
{
    public class HomeController : Controller
    {
        private IStrategy _strategy;

        public HomeController(IStrategy strategy)
        {
            this._strategy = strategy;
        }

        public ActionResult Index()
        {
            ViewData["s"] = _strategy.GetStrategy();
            return View();
        }

    }
}

 

Home/Index.cshtml中:

@{
    ViewBag.Title = "Index";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<h2>Index</h2>

@ViewData["s"].ToString()

 

结果显示:进攻阵型

发表评论
用户名: 匿名