MVC | 依赖注入 AutoFac (构造函数注入)

5 篇文章 0 订阅

AutoFac原理图(IOC控制反转,DI依赖注入)


参考资料:Ioc容器Autofac系列(2)-- asp.net mvc中整合autofac

http://www.cnblogs.com/daisy-popule/p/4126599.html

http://www.tuicool.com/articles/VfIRvq

1>创建Asp.net MVC项目并引入Autofac

首先,创建一个MVC站点。然后通过 NuGet或到 Autofac官网下载来引入类库。个人推荐前者,因为从VS2010开始,已内集可视化的NuGet功能,使用起来非常方便。如下图所示:


如果是web项目就下载这个AutoFac   如果是MCV项目则下载 AutoFac asp.net mvc
因为我们这里是MVC项目,所有不需要下这个Autofac 。而是需要下载下面那副图的
AutoFac asp.net mvc 5 Integration

如果是MC项目 这需要下的这个专用于MVC的 AutoFac asp.net mvc

3

4
这下我们在MVC项目的引用中查看System.Web.Mvc 然后点击属性 我们看到MVC从4.0版本升级到5.2.3版本了
          

Global.asax

using Autofac;
using Autofac.Integration.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web;
using System.Web.Compilation;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;

namespace CMS.MvcUI
{
    public class MvcApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);
            BuiderIocContainer();
        }

        public static void BuiderIocContainer()
        {


            var builder = new ContainerBuilder();

            builder.RegisterControllers(System.Reflection.Assembly.GetExecutingAssembly());//注册mvc容器的实现


            //如果有web类型,请使用如下获取Assenbly方法(获取所有需要用到的程序集,放到list中)

            //用GetReferencedAssemblies方法获取当前应用程序下所有的程序集
            var assemblys = BuildManager.GetReferencedAssemblies().Cast<Assembly>().ToList();

            

            builder.RegisterAssemblyTypes(assemblys.ToArray())//查找程序集中以Repository结尾的类型
            .Where(t => t.Name.EndsWith("Bll"))//查找所有程序集下面以Bll结尾的类
            .AsImplementedInterfaces(); //将找到的类和对应的接口放入IOC容器(放到IOC容器中有什么用处?:)


            builder.RegisterAssemblyTypes(assemblys.ToArray())//查找程序集中以Dal结尾的类型
            .Where(t => t.Name.EndsWith("Dal"))
            .AsImplementedInterfaces();//表示注册的类型,以接口的方式注册

            //builder.RegisterAssemblyTypes(assemblys.ToArray()).AsImplementedInterfaces(); //这样写就将应用程序下所有的类都注册了


            //RegisterType表示我要注册什么类型; As<T_UserInfoBll>表示这个类型需要实现什么接口。IT_UserInfoBll就是接口名称
            //builder.RegisterType<T_UserInfoBll>().As<IT_UserInfoBll>();


            // builder.RegisterType<GmsWorkContext>();
            // builder.RegisterType<GmsWorkContext>().PropertiesAutowired(); 




            // builder.RegisterType<UserService>().As<IUserService>();
            // builder.RegisterType<EasyAuthorize>().PropertiesAutowired();



            var container = builder.Build(); //Build()方法是表示:创建一个容器
            //config.DependencyResolver = new AutofacDependencyResolver(container);//注册api容器需要使用HttpConfiguration对象
            DependencyResolver.SetResolver(new AutofacDependencyResolver(container));//注册MVC容器

        }
    }
}

Home控制器
using CMS.IDAL;
using CMS.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace CMS.MvcUI.Controllers
{
    using IBLL;
    public class HomeController : Controller
    {
        IT_UserInfoBll _bll;
        public HomeController(IT_UserInfoBll  bll) //使用构造函数实现注入
        {
            _bll = bll;
                      
        }
        public ActionResult Index()
        {
            
            return View();
        }
	}
}

BaseBll.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CMS.BLL
{
    using IBLL;
    using IDAL;
    using System.Linq.Expressions;
    public class BaseBll<TEntity>:IBaseBll<TEntity> where TEntity:class
    {
        protected IBaseDal<TEntity> _ibasedal;
        //public BaseBll(IBaseDal<TEntity> ibasedal)
        //{
        //    _ibasedal = ibasedal;
        //}
    
        public List<TEntity> QueryWhere(Expression<Func<TEntity, bool>> where)
        {
            return _ibasedal.QueryWhere(where);
        }
    }
}


T_UserInfoBll.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CMS.BLL
{
    using Model;
    using IBLL;
    using IDAL;
    public class T_UserInfoBll : BaseBll<T_UserInfo>, IT_UserInfoBll
    {
        public IT_UserInfoDal _dal;

        public T_UserInfoBll(IT_UserInfoDal dal)
        {
            _dal = dal;
            base._ibasedal = dal;
        }

    }
}

BaseDal.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CMS.DAL
{
    //using Model;
    using IDAL;
    using System.Linq.Expressions;
    public class BaseDal<TEntity>:IBaseDal<TEntity> where TEntity:class
    {
        BaseDbContext db = new BaseDbContext();
        public List<TEntity> QueryWhere(Expression<Func<TEntity, bool>> where)
        {
            return db.Set<TEntity>().Where(where).ToList();
        }
    }
}

T_UserInfoDal.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CMS.DAL
{
    using Model;
    using IDAL;
    public class T_UserInfoDal:BaseDal<T_UserInfo>,IT_UserInfoDal
    {
    }
}


BaseDbContext.cs


using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace CMS.DAL
{
    using System.Data.Entity;
    public class BaseDbContext:DbContext
    {
        public BaseDbContext()
            : base("salesEntities")
        { }
    }
}





  • 0
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在 .NET Framework 中使用 MVC 架构时,可以使用依赖注入(Dependency Injection,简称 DI)来解决对象之间的依赖关系。依赖注入是一种设计模式,通过将对象的创建和管理委托给外部容器来实现。 在 MVC 中使用依赖注入的好处是可以降低代码的耦合性,提高可维护性和可测试性。以下是在 .NET Framework MVC 中使用依赖注入的一般步骤: 1. 配置依赖注入容器:您可以使用第三方的依赖注入容器,如 Autofac、Unity、Ninject 等,或者使用 .NET Framework 自带的简单容器(如 `UnityContainer`)。 2. 注册依赖项:在配置阶段,您需要将控制器、服务、存储库等需要被注入的对象注册到容器中。这样容器就能够识别和管理这些对象。 3. 声明依赖关系:在需要使用依赖项的地方(如控制器构造函数),通过构造函数或属性注入等方式声明依赖关系。容器会自动解析和提供所需的对象实例。 4. 解析依赖项:在运行时,容器会根据对象的声明和注册信息来解析依赖关系,并将所需的对象实例提供给相应的对象。 下面是一个使用 .NET Framework MVC 和 Unity 容器的示例: 首先,安装 Unity 容器的 NuGet 包(例如通过 NuGet 包管理器控制台运行 `Install-Package Unity`)。 然后,在 Global.asax.cs 文件的 Application_Start 方法中配置 Unity 容器: ```csharp protected void Application_Start() { // 创建 Unity 容器 var container = new UnityContainer(); // 注册依赖项 container.RegisterType<IMyService, MyService>(); // 设置 MVC 依赖解析器为 UnityDependencyResolver DependencyResolver.SetResolver(new UnityDependencyResolver(container)); // 其他 MVC 配置... } ``` 接下来,在控制器中声明依赖关系: ```csharp public class MyController : Controller { private readonly IMyService _myService; public MyController(IMyService myService) { _myService = myService; } // 控制器动作方法... } ``` 现在,当 MVC 框架创建 MyController 实例时,Unity 容器会自动解析 IMyService 接口的实现(如 MyService),并将其注入控制器构造函数中。 这样,您就可以通过依赖注入来实现对象之间的解耦和灵活性,使代码更加可测试和可扩展。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值