Autofac简单介绍

来源:互联网 发布:伊势神宫 知乎 编辑:程序博客网 时间:2024/06/07 02:21
Nicholas Blumhardt经过了2年多的开发,设计和试验,Autofac发布了第二版,针对1.4版本进行了重组,提供了更好的开发体验,你可以到这里下载正式的版本。

2.1版本也带来许多新特性:

1. 组件发现:Autofac 2可以从一个程序集的注册类型设置根据用户指定的规则:

var dataAccess = Assembly.GetExecutingAssembly();
builder.RegisterAssemblyTypes(dataAccess)
.Where(t => t.Name.EndsWith("Repository"))
.AsImplementedInterfaces();

RegisterAssemblyTypes方法将Repository模式的数据访问接口类都注册了,语法非常的简单。

2.类型关系:Autofac通过自动支持小型,有重点,强类型的包装,来表达动态的依赖关系。类型关系如下:

RelationshipAdapter TypeMeaningA needs a BNoneDependencyA needs a B at some point in the futureLazy<B>Delayed instantiationA needs a B until some point in the futureOwned<B>Controlled lifetimeA needs to create instances of BFunc<B>Dynamic instantiationA provides parameters of types X andY to BFunc<X,Y,B>ParameterisationA needs all the kinds of BIEnumerable<B>EnumerationA needs to know X about B before using itMeta<T> andMeta<B,X>Metadata interrogation

3. 具体参看文章The Relationship Zoo.
组件元数据:.NET 4版本的Autofac 2.1支持类似于Managed Extensibility Framework (MEF)的功能。.NET 3.5(以及4.0)版本的提供了一个弱类型的Meta<T>类
集成Managed Extensibility Framework (MEF),具体内容参看Autofac MEF integration wiki page,有一篇博客Hosting MEF Extensions in an IoC Container对这个架构进行了深入的讨论。


2.1版本不仅带来了许多新特性,而且对1.4版本也作了很大的改进:

泛型现在是一等公民– Autofac 使用合适的泛型类型来解决通用的服务
激活事件的参数实例是强类型的,例如 builder.RegisterType<Foo>().OnActivating(e => e.Instance.Start()).
ASP.NET MVC的Controller注册更灵活和更简单,通过方法RegisterControllers() 进行注册,参看文章MVC Integration Changes in Autofac Beta 2.1.6.
默认的Scope更改为单件(Singleton)而不是factory
支持“Resolve Anything”
API 文档可以通过google进行搜索,例如
http://www.google.com.au/search?q=site:api.autofac.org+ILifetimeScope

原创粉丝点击