mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
76 lines
2.8 KiB
C#
76 lines
2.8 KiB
C#
// ***********************************************************************
|
||
// Assembly : OpenAuth.Mvc
|
||
// Author : yubaolee
|
||
// Created : 10-26-2015
|
||
//
|
||
// Last Modified By : yubaolee
|
||
// Last Modified On : 10-26-2015
|
||
// ***********************************************************************
|
||
// <copyright file="AutofacExt.cs" company="www.cnblogs.com/yubaolee">
|
||
// Copyright (c) www.cnblogs.com/yubaolee. All rights reserved.
|
||
// </copyright>
|
||
// <summary>IOC扩展</summary>
|
||
// ***********************************************************************
|
||
|
||
using Autofac;
|
||
using Autofac.Configuration;
|
||
using Autofac.Integration.Mvc;
|
||
using OpenAuth.App;
|
||
using System.Reflection;
|
||
using System.Web.Mvc;
|
||
using OpenAuth.Domain.Interface;
|
||
using OpenAuth.Repository;
|
||
|
||
namespace OpenAuth.Mvc
|
||
{
|
||
internal static class AutofacExt
|
||
{
|
||
public static void InitAutofac()
|
||
{
|
||
var builder = new ContainerBuilder();
|
||
|
||
//<2F><><EFBFBD><EFBFBD>ע<EFBFBD><D7A2>
|
||
builder.RegisterGeneric(typeof(BaseRepository<>)).As(typeof(IRepository<>));
|
||
|
||
//Ӧ<>ò<EFBFBD>ע<EFBFBD><D7A2>
|
||
builder.RegisterModule(new ConfigurationSettingsReader("autofac"));
|
||
builder.RegisterType<LoginApp>();
|
||
builder.RegisterType<OrgManagerApp>();
|
||
builder.RegisterType<UserManagerApp>();
|
||
builder.RegisterType<RoleManagerApp>();
|
||
builder.RegisterType<ModuleManagerApp>();
|
||
builder.RegisterType<ModuleElementManagerApp>();
|
||
builder.RegisterType<CategoryManagerApp>();
|
||
builder.RegisterType<ResourceManagerApp>();
|
||
|
||
// Register your MVC controllers.
|
||
builder.RegisterControllers(typeof(MvcApplication).Assembly);
|
||
|
||
// OPTIONAL: Register model binders that require DI.
|
||
builder.RegisterModelBinders(Assembly.GetExecutingAssembly());
|
||
builder.RegisterModelBinderProvider();
|
||
|
||
// OPTIONAL: Register web abstractions like HttpContextBase.
|
||
builder.RegisterModule<AutofacWebTypesModule>();
|
||
|
||
// OPTIONAL: Enable property injection in view pages.
|
||
builder.RegisterSource(new ViewRegistrationSource());
|
||
|
||
// OPTIONAL: Enable property injection into action filters.
|
||
builder.RegisterFilterProvider();
|
||
|
||
// Set the dependency resolver to be Autofac.
|
||
var container = builder.Build();
|
||
DependencyResolver.SetResolver(new AutofacDependencyResolver(container));
|
||
}
|
||
|
||
/// <summary>
|
||
/// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ȡ
|
||
/// </summary>
|
||
/// <typeparam name="T"></typeparam>
|
||
public static T GetFromFac<T>()
|
||
{
|
||
return (T)DependencyResolver.Current.GetService(typeof(T));
|
||
}
|
||
}
|
||
} |