首先看下Demo2的结构

分享下demo源码 :http://pan.baidu.com/s/1qYtZCrM

   

然后下面一步步将Autofac集成到mvc中。

首先,定义Model Product.cs

public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public double Price { get; set; }
public string Remark { get; set; }
public DateTime Date { get; set; }
}

Product.cs

第二步 创建文件夹IRepository 用于存放仓储接口IProductRepository

 public interface IProductRepository
{
IEnumerable<Product> GetAll();
Product Get(int id);
Product Add(Product item);
bool Update(Product item);
bool Delete(int id);
}

IProductRepository.cs

第三步 创建文件夹Repository 定义ProductRepository 实现IProductRepository仓储接口

  public class ProductRepository : IProductRepository
{
private List<Product> Products = new List<Product>(); public ProductRepository()
{
Add(new Product { Id = , Name = "手机", Price = , Remark = "4g 手机", Date = DateTime.Now.AddDays(-) });
Add(new Product { Id = , Name = "电脑", Price = , Remark = "笔记本本", Date = DateTime.Now.AddDays(-) });
Add(new Product { Id = , Name = "bb机", Price = , Remark = "大时代必备", Date = DateTime.Now.AddDays(-) });
Add(new Product { Id = , Name = "pad", Price = , Remark = "mini 电脑", Date = DateTime.Now });
}
public IEnumerable<Product> GetAll()
{
return Products;
} public Product Get(int id)
{
return Products.Find(p => p.Id == id);
} public Product Add(Product item)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
Products.Add(item);
return item;
} public bool Update(Product item)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
int index = Products.FindIndex(p => p.Id == item.Id);
if (index == -)
{
return false;
}
Products.RemoveAt(index);
Products.Add(item);
return true;
} public bool Delete(int id)
{
Products.RemoveAll(p => p.Id == id);
return true;
}
}

ProductRepository.cs

ok,WebApplication_AutoFac引用AutoFac_Demo2 以及从VS中的NuGet来加载Autofac.Integration.Mvc

下一步定义ProductController 这里我们用构造器注入

 public class ProductController : Controller
{
readonly IProductRepository repository;
//构造器注入
public ProductController(IProductRepository repository)
{
this.repository = repository;
}
// GET: /Product/
public ActionResult Index()
{
var data = repository.GetAll();
return View(data);
}
}

ProductController.cs

index页也比较简单,用vs根据model生成的list页

@model IEnumerable<AutoFac_Demo2.Model.Product>
@{
ViewBag.Title = "Index";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h2>Index</h2>
<p>
@Html.ActionLink("Create New", "Create")
</p>
<table class="table">
<tr>
<th>
@Html.DisplayNameFor(model => model.Name)
</th>
<th>
@Html.DisplayNameFor(model => model.Price)
</th>
<th>
@Html.DisplayNameFor(model => model.Remark)
</th>
<th>
@Html.DisplayNameFor(model => model.Date)
</th>
<th></th>
</tr> @foreach (var item in Model) {
<tr>
<td>
@Html.DisplayFor(modelItem => item.Name)
</td>
<td>
@Html.DisplayFor(modelItem => item.Price)
</td>
<td>
@Html.DisplayFor(modelItem => item.Remark)
</td>
<td>
@Html.DisplayFor(modelItem => item.Date)
</td>
<td>
@Html.ActionLink("Edit", "Edit", new { id=item.Id }) |
@Html.ActionLink("Details", "Details", new { id=item.Id }) |
@Html.ActionLink("Delete", "Delete", new { id=item.Id })
</td>
</tr>
} </table>

Index.cshtml

最后最关键的实现注入

protected void Application_Start()
{
//创建autofac管理注册类的容器实例
var builder = new ContainerBuilder();
//下面就需要为这个容器注册它可以管理的类型
//builder的Register方法可以通过多种方式注册类型,之前在demo1里面也演示了好几种方式了。
builder.RegisterType<ProductRepository>().As<IProductRepository>();
//使用Autofac提供的RegisterControllers扩展方法来对程序集中所有的Controller一次性的完成注册
builder.RegisterControllers(Assembly.GetExecutingAssembly());//生成具体的实例
var container = builder.Build();
//下面就是使用MVC的扩展 更改了MVC中的注入方式.
DependencyResolver.SetResolver(new AutofacDependencyResolver(container)); AreaRegistration.RegisterAllAreas();
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}

其实除了构造函数注入还可以属性注入 把之前repository 改为get set 就变成属性了

public class ProductController : Controller
{
#region
//readonly IProductRepository repository;
////构造器注入
//public ProductController(IProductRepository repository)
//{
// this.repository = repository;
//}
#endregion
public IProductRepository repository { get; set; }
// GET: /Product/
public ActionResult Index()
{
var data = repository.GetAll();
return View(data);
}
}

然后,将

//使用Autofac提供的RegisterControllers扩展方法来对程序集中所有的Controller一次性的完成注册
builder.RegisterControllers(Assembly.GetExecutingAssembly());

改为

builder.RegisterControllers(Assembly.GetExecutingAssembly()).PropertiesAutowired(); // 这样支持属性注入

最后效果:

最后的最后,为了不像 builder.RegisterType<ProductRepository>().As<IProductRepository>(); 这样一个一个的注册,所以要像装载controller一样完成自动注入

自动注入

    Autofac提供一个RegisterAssemblyTypes方法。它会去扫描所有的dll并把每个类注册为它所实现的接口。既然能够自动注入,那么接口和类的定义一定要有一定的规律。我们可以定义IDependency接口的类型,其他任何的接口都需要继承这个接口。

public interface IDependency
{
}
public interface IProductRepository : IDependency
{
IEnumerable<Product> GetAll();
Product Get(int id);
Product Add(Product item);
bool Update(Product item);
bool Delete(int id);
}

添加IUserRepository.cs 继承IDependency

 public interface IUserRepository : IDependency
{
IEnumerable<User> GetAll();
User Get(int id);
User Add(User item);
bool Update(User item);
bool Delete(int id);
}

IUserRepository.cs

仓储实现

 public class UserRepository : IUserRepository
{
private List<User> Users = new List<User>();
public UserRepository()
{
Add(new User { Id = , Name = "hyh" });
Add(new User { Id = , Name = "hyg" });
Add(new User { Id = , Name = "hyr" });
} public IEnumerable<User> GetAll()
{
return Users;
} public User Get(int id)
{
return Users.Find(p => p.Id == id);
} public User Add(User item)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
Users.Add(item);
return item;
} public bool Update(User item)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
int index = Users.FindIndex(p => p.Id == item.Id);
if (index == -)
{
return false;
}
Users.RemoveAt(index);
Users.Add(item);
return true;
} public bool Delete(int id)
{
Users.RemoveAll(p => p.Id == id);
return true;
}
}

UserRepository.cs

最后Global

 #region 自动注入
//创建autofac管理注册类的容器实例
var builder = new ContainerBuilder();
Assembly[] assemblies = Directory.GetFiles(AppDomain.CurrentDomain.RelativeSearchPath, "*.dll").Select(Assembly.LoadFrom).ToArray();
//注册所有实现了 IDependency 接口的类型
Type baseType = typeof(IDependency);
builder.RegisterAssemblyTypes(assemblies)
.Where(type => baseType.IsAssignableFrom(type) && !type.IsAbstract)
.AsSelf().AsImplementedInterfaces()
.PropertiesAutowired().InstancePerLifetimeScope(); //注册MVC类型
builder.RegisterControllers(assemblies).PropertiesAutowired();
builder.RegisterFilterProvider();
var container = builder.Build();
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
#endregion

结果如下:

ok,先到这了...

Asp.Net MVC 之 Autofac 初步使用2 集成mvc 属性注入以及自动注入的更多相关文章

  1. Asp.Net MVC 之 Autofac 初步使用3 集成web api

    今天我们试着在WebApi2实现autofac的注入,关于这方面也是看了几位园友的分享省了不少时间,所以结合着前篇的demo再新建webapi进行... 一样开篇还是发下大概demo结构: 还是nug ...

  2. Autofac手动注入及自动注入示例

    参考:http://www.cnblogs.com/xinchuang/archive/2013/05/07/3065433.html#2911661 一.环境 vs2012.mvc4..Net Fr ...

  3. Asp.Net MVC 之 Autofac 初步使用1

    Autofac是.NET领域最为流行的IOC框架之一,传说是速度最快的一个: 优点: 它是C#语言联系很紧密,也就是说C#里的很多编程方式都可以为Autofac使用 较低的学习曲线,学习它非常的简单, ...

  4. ASP.NET IOC之 AutoFac的认识和结合MVC的使用

    这几天研究了解发现AutoFac是个牛X的IOC容器,是.NET领域比较流行的IOC框架之一,传说是速度最快的,~ 据相关资料,相关学习,和认知,遂做了一些整理 优点: 它是C#语言联系很紧密,也就是 ...

  5. Autofac容器使用属性进行WebApi自动注入

    背景 使用Autofac进行依赖注入时,经常遇到的场景是在容器中进行类似如下代码的注入操作: builder.RegisterType<BackInStockSubscriptionServic ...

  6. MVC中Autofac的使用

    参考博文 https://www.cnblogs.com/liupeng/p/4806184.html https://blog.csdn.net/qq_37214567/article/detail ...

  7. Asp.Net Mvc使用Autofac实现依赖注入

    在asp.net mvc控制器中使用Autofac来解析依赖 如下Controller中使用构造函数依赖注入接口IPeople : public class AutoFacController : C ...

  8. ADO.NET .net core2.0添加json文件并转化成类注入控制器使用 简单了解 iTextSharp实现HTML to PDF ASP.NET MVC 中 Autofac依赖注入DI 控制反转IOC 了解一下 C# AutoMapper 了解一下

    ADO.NET   一.ADO.NET概要 ADO.NET是.NET框架中的重要组件,主要用于完成C#应用程序访问数据库 二.ADO.NET的组成 ①System.Data  → DataTable, ...

  9. ASP.NET Core Web 应用程序系列(三)- 在ASP.NET Core中使用Autofac替换自带DI进行构造函数和属性的批量依赖注入(MVC当中应用)

    在上一章中主要和大家分享了在ASP.NET Core中如何使用Autofac替换自带DI进行构造函数的批量依赖注入,本章将和大家继续分享如何使之能够同时支持属性的批量依赖注入. 约定: 1.仓储层接口 ...

随机推荐

  1. 3.IP协议,ARP协议,RARP协议

    1.IP协议 IP协议是TCP/IP协议的核心,所有的TCP,UDP,IMCP,IGCP的数据都以IP数据格式传输.要注意的是,IP不是可靠的协议,这是说,IP协议没有提供一种数据未传达以后的处理机制 ...

  2. iOS 开源库 之 AFNetWorking 2.x

    1. 网络请求的基本知识 2. Get/Post 请求的使用 3. 文件(图片)上传 4. 断点下载 5. 其它使用细节 6. 设计优良的地方

  3. windows中如何查看某个端口被谁占用

    说明:本人操作系统为win7 x64,文章转自http://jingyan.baidu.com/article/3c48dd34491d47e10be358b8.html,加上本人的注释. 开始--- ...

  4. 漂亮的PHP验证码

    <?php class Imagecode{ private $width ; private $height; private $counts; private $distrubcode; p ...

  5. Selenium2(java)selenium常用API 四

    WebElement相关方法 1.点击操作 WebElement button = driver.findElement(By.id("login")); button.click ...

  6. Servlet 应用程序事件、监听器

    Web容器管理Servlet/JSP相关的生命周期,若对HttpServletRequest对象.HttpSession对象.ServletContxt对象在生成.销毁或相关属性设置发生的时机点有兴趣 ...

  7. 分析器错误消息: 无法识别的属性“targetFramework”。

    配置错误 说明: 在处理向该请求提供服务所需的配置文件时出错.请检查下面的特定错误详细信息并适当地修改配置文件. 分析器错误消息: 无法识别的属性“targetFramework”.请注意属性名称区分 ...

  8. 怎样在iis中发布asp.net网站

    以windows server2003.vs2008和sql servber2005为例.将开发完成的asp.net网站发布,将发布包放在windows server2003服务器的文件夹下.将web ...

  9. 树莓派VNC搭建相关问题,啦啦啦~

    为了节省money,于是我决定用VNC界面来代替显示器,为后面做C++ Qt以及Python Qt开发打下基础,我别无选择!下面开始进入正题: 1-- 下载VNC-Viewer-6.0.1-Windo ...

  10. PowerDesigner如何把建好的表导入到数据库中,并且把注释也导入进去

    第一次接触这个软件,经过自己的捣鼓和百度,终于可以顺利的导入数据库中了,好开森,希望可以帮助到更多人. 数据库(mysql)其实和sqlserver差不多,以16.5版本为例 1.选中一个PDM项目, ...