快速业务通道

Asp.net MVC示例项目“Suteki.Shop”分析之IOC(控制反转)

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-22
nt.For<XmlRpcEndpointBehavior>(),
Component.For<IMetaWeblog> ().ImplementedBy<MetaWeblogWcf>().Named ("metaWebLog").LifeStyle.Transient
);

}
}

如前 面所说的,扩张单元插件(Facilities)可以在不更改原有组件的基础上注入你所需要的功能代码,这 里就使用了其AddFacility方法来添加扩展单元来注册并管理我们的Windows Live Writer组件。

下面继分析InitializeWindsor方法中的其余代码,看完了ConfigureContainer方法,接着就是下面这一 行代码了:

ServiceLocator.SetLocatorProvider(() => container.Resolve<IServiceLocator>());

刚看到这一行让我感觉似曾相识,记 得以前在看Oxite的Global.asax中也看过类似的这样一行代码。

ServiceLocator.SetLocatorProvider(() => new UnityServiceLocator (container));

只不过那个项目中用的是 Unity而不是Castle Windsor。但实际的功能是 一样的。即完成对容器中服务地址的解析绑定。有了它,就可以通过 Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase中所定义的方法如:DoGetInstance或 DoGetAllInstances 来获取相应的服务组件(集合)的实例。

比如本项目中的DoGetInstance及 DoGetAllInstances()实现代码如下:

(文件位于: Suteki.Common\Windsor\WindsorServiceLocator.cs):

protected override object DoGetInstance(Type serviceType, string key)
{
if (key != null)
return container.Resolve(key, serviceType);
return container.Resolve(serviceType);
}

/// <summary>
/// When implemented by inheriting classes, this method will do the actual work of
/// resolving all the requested service instances.
/// </summary>
/// <param name="serviceType">Type of service requested.</param>
/// <returns>
/// Sequence of service instance objects.
/// </returns>
protected override IEnumerable<object> DoGetAllInstances(Type serviceType)
{
return (object[])container.ResolveAll (serviceType);
}

注,对该WindsorServiceLocator类的IOC绑定在 ContainerBuilder.Build中,如下:

container.Register(
Component.For<IUnitOfWorkManager> ().ImplementedBy<LinqToSqlUnitOfWorkManager>().LifeStyle.Transient,
Component.For<IFormsAuthentication> ().ImplementedBy<FormsAuthenticationWrapper>(),
Component.For<IServiceLocator>().Instance(new WindsorServiceLocator (container)),

而InitializeWindsor方法中的最后一行代码如下:

System.Web.Mvc.ControllerBuilder.Current.SetControllerFactory(new WindsorControllerFactory(container));

这里要说明的是WindsorControllerFactory这 个类是在 MvcContrib项目中提供的,用于构造一个Castle项目类型的Controller工厂。

好了, 今天的内容可能有点杂,主要就是Castle闹的,因为其中有一些概念要了解之后才能把项目中的代码看 懂。不过从整体上来看,Suteki.Shop的IOC机制实现的还是很清晰的,没什么太难看的代码。

今 天就先到这里了。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号