首页 > 代码库 > AutoFac Asp.Net Mvc
AutoFac Asp.Net Mvc
autofac依赖注入,帮我们实例化接口,无需使用传统的New
如:
public class AutoFacController : Controller { public IPeople _people; public AutoFacController(IPeople people) { _people = people; } // GET: AutoFac public ActionResult Index() { ViewBag.test = _people.Getpeople(); return View(); } }
Global.asax中配置如下
//创建autofac管理注册类的容器实例 var builder = new ContainerBuilder(); //下面就需要为这个容器注册它可以管理的类型 //builder的Register方法可以通过多种方式注册类型,之前在控制台程序里面也演示了好几种方式了。 builder.RegisterType<People>().As<IPeople>(); //builder.RegisterType<DefaultController>().InstancePerDependency(); //使用Autofac提供的RegisterControllers扩展方法来对程序集中所有的Controller一次性的完成注册 builder.RegisterControllers(Assembly.GetExecutingAssembly()); //生成具体的实例 var container = builder.Build(); //下面就是使用MVC的扩展 更改了MVC中的注入方式. DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
AutoFac Asp.Net Mvc
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。