zoukankan      html  css  js  c++  java
  • autofac 在webapi中拿到当前request的scope

    https://stackoverflow.com/questions/31321386/autofac-web-api-get-current-scope

     

    Unless you are using OWIN in your API, you should have your Autofac configuration setup in your WebAPI like this, which is the standard way to configure Autofac for WebApi.

    Include nuget pacakge Autofac.Integration.WebApi

    var builder = new ContainerBuilder();
    builder.RegisterApiControllers(Assembly.GetExecutingAssembly());
    builder.RegisterType<MyType>();
    
    var container = builder.Build();
    var resolver = new AutofacWebApiDependencyResolver(container);
    GlobalConfiguration.Configuration.DependencyResolver = resolver;
    

    Should you need to request the LifetimeScope like in your example, you can then request this from GlobalConfiguration.

    var scope = GlobalConfiguration.Configuration.DependencyResolver.GetRequestLifetimeScope();
    MyService service = scope.Resolve<MyService>();
    

    Autofac WebApi configuration reference

    在和Owin集成的web api中GlobalConfiguration.Configuration是无法使用的。需要使用其他方法

    https://www.cnblogs.com/chucklu/p/10420034.html

    https://stackoverflow.com/questions/28725753/owin-service-resolution-using-autofac

    If you are in a DelegatingHandler or an ApiController you will have a reference to the current HttpRequestMessage. Use message.GetDependencyScope() to get the current request-level dependency scope to resolve services.

    public HttpResponseMessage SomeControllerAction()
    {
      var service = this.Request.GetDependencyScope().GetService(typeof(Service));
    }
    
     protected override async void Initialize(HttpControllerContext controllerContext)
            {
                string requestBody = await controllerContext.Request.Content.ReadAsStringAsync();
                SecurityCheckResult securityCheckResult = requestAnalyzer.SecurityCheck(requestBody);
                if (securityCheckResult.Success)
                {
                    var dependencyScope = controllerContext.Request.GetDependencyScope();
                    var lifetimeScope = dependencyScope.GetRequestLifetimeScope();
                    var parameter = new NamedParameter("OpCo", securityCheckResult.OpCo);
                    Program = lifetimeScope.Resolve<IProgramContract>(parameter);
                    Service = lifetimeScope.Resolve<IDynamicProfileService>(parameter);
                }
    
                LogUtil.CreateLog(LogLevel.Message, $"BaseApiController.Initialize");
                base.Initialize(controllerContext);
            }

    源码

    https://github.com/autofac/Autofac.WebApi/blob/develop/src/Autofac.Integration.WebApi/DependencyResolverExtensions.cs

    using System.Web.Http.Dependencies;
    
    namespace Autofac.Integration.WebApi
    {
        /// <summary>
        /// Extension methods to the <see cref="IDependencyResolver"/> interface.
        /// </summary>
        public static class DependencyResolverExtensions
        {
            /// <summary>
            /// Gets the root lifetime scope from the Autofac dependency resolver.
            /// </summary>
            /// <param name="dependencyResolver">
            /// The dependency resolver from which the root lifetime scope should be retrieved.
            /// </param>
            public static ILifetimeScope GetRootLifetimeScope(this IDependencyResolver dependencyResolver)
            {
                var resolver = dependencyResolver as AutofacWebApiDependencyResolver;
                return (resolver == null) ? null : resolver.Container;
            }
    
            /// <summary>
            /// Gets the request lifetime scope from the Autofac dependency scope.
            /// </summary>
            /// <param name="dependencyScope">
            /// The dependency scope from which the request lifetime scope should be retrieved.
            /// </param>
            public static ILifetimeScope GetRequestLifetimeScope(this IDependencyScope dependencyScope)
            {
                var scope = dependencyScope as AutofacWebApiDependencyScope;
                return (scope == null) ? null : scope.LifetimeScope;
            }
        }
    }

    而Microsoft.AspNet.WebApi.Core.5.2.7中,有一个扩展HttpRequestMessage的静态类public static class HttpRequestMessageExtensions

    public static IDependencyScope GetDependencyScope(this HttpRequestMessage request);

    所以我们可以通过request去拿到IDependencyScope 。

    然后autofac扩展了IDependencyScope ,增加了1个GetRequestLifetimeScope的方法,拿到这个scope就可以进行resolve了。

  • 相关阅读:
    迷失第一季/全集Lost 1迅雷下载
    星际之门SG1第一至十季/全集Stargate SG-1迅雷下载
    广告狂人第一至七季/全集Mad Men迅雷下载
    唐顿庄园第一至五季/全集Downton Abbey迅雷下载
    越狱第一至五季/全集迅雷下载
    邪恶力量第一至九季/全集Supernatural迅雷下载
    豪斯医生第一季/全集House M.D 1迅雷下载
    绝命毒师第五季/全集Breaking Bad迅雷下载
    绝命毒师第一季/全集Breaking Bad迅雷下载
    冰血暴第一季/全集Fargo迅雷下载
  • 原文地址:https://www.cnblogs.com/chucklu/p/10429218.html
Copyright © 2011-2022 走看看