Autofac RegisterAssemblyModules throws Autofac.Core.DependencyResolutionException

1.4k Views Asked by At

I have a WebAPI 2 that uses Autofac. Below works, but RegisterAssemblyModules throws DependencyResolutionException

    builder.RegisterModule<InfrastructureBootstrapper>(); //works
    builder.RegisterModule<LoggingBootstrapper>();
    builder.RegisterModule<AppServicesBootstrapper>();

WebAPI 2

public static IContainer RegisterTypes()
    {
        var builder = new ContainerBuilder();

        //throws DependencyResolutionException
        builder.RegisterAssemblyModules(AppDomain.CurrentDomain.GetAssemblies());

        //Below works
        //builder.RegisterModule<InfrastructureBootstrapper>();   
        //builder.RegisterModule<LoggingBootstrapper>();
        //builder.RegisterModule<AppServicesBootstrapper>();
        ...
        builder.RegisterApiControllers(Assembly.GetExecutingAssembly()).InstancePerRequest();

        var container = builder.Build();
        container.Resolve<HttpConfiguration>().DependencyResolver = new AutofacWebApiDependencyResolver(container);

        return container;
    }

InfrastructureBootstrapper

public class InfrastructureBootstrapper: Module
    {
        protected override void Load(ContainerBuilder builder)
        {
            base.Load(builder);
            builder.RegisterType<Config>().As<IConfig>();
        }
    }

Updated below:
LoggingBootstrapper

  public class LoggingBootstrapper: Module
    {
        protected override void Load(ContainerBuilder builder)
        {
            base.Load(builder);

            builder.Register(x => NLog.LogManager.GetCurrentClassLogger()).As<IFileLogger>().SingleInstance();
            builder.RegisterType<Logger>().As<ILogger>();

        }
    }

All projects use below.

 <package id="Autofac" version="4.6.2" targetFramework="net452" />

Info: .net 4.5.2, WebAPI 2, Owin hosting, and Windows Service via Topshelf.

The customer api controller uses contractor dependency injection. The injection has not resolved the dependency, thus the exception below:

   Unhandled Exception: Autofac.Core.DependencyResolutionException: An error occurr
    ed during the activation of a particular registration. See the inner exception f
    or details. Registration: Activator = Service (ReflectionActivator), Services =
    [Game.MPC2.RXS.Api.HostServices.IService], Lifetime = Autofac.Core.
    Lifetime.RootScopeLifetime, Sharing = Shared, Ownership = OwnedByLifetimeScope -
    --> None of the constructors found with 'Autofac.Core.Activators.Reflection.Defa
    ultConstructorFinder' on type 'Game.MPC2.RXS.Api.HostServices.Servi
    ce' can be invoked with the available services and parameters:
    Cannot resolve parameter 'Game.MPC2.RXS.Logging.ILogger logger' of
    constructor 'Void .ctor(Game.MPC2.RXS.Logging.ILogger, Game.MP
    C2.RXS.Api.HostServices.IWebServer)'. (See inner exception for details.)
     ---> Autofac.Core.DependencyResolutionException: None of the constructors found
     with 'Autofac.Core.Activators.Reflection.DefaultConstructorFinder' on type 'Roy
    alMail.MPC2.RXS.Api.HostServices.Service' can be invoked with the availa
    ble services and parameters:
    Cannot resolve parameter 'Game.MPC2.RXS.Logging.ILogger logger' of
    constructor 'Void .ctor(Game.MPC2.RXS.Logging.ILogger, Game.MP
    C2.RXS.Api.HostServices.IWebServer)'.
       at Autofac.Core.Activators.Reflection.ReflectionActivator.GetValidConstructor
    Bindings(IComponentContext context, IEnumerable`1 parameters)
       at Autofac.Core.Activators.Reflection.ReflectionActivator.ActivateInstance(IC
    omponentContext context, IEnumerable`1 parameters)
       at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters)
       --- End of inner exception stack trace ---
       at Autofac.Core.Resolving.InstanceLookup.Activate(IEnumerable`1 parameters)
       at Autofac.Core.Resolving.InstanceLookup.<Execute>b__5_0()
       at Autofac.Core.Lifetime.LifetimeScope.GetOrCreateAndShare(Guid id, Func`1 cr
    eator)
       at Autofac.Core.Resolving.InstanceLookup.Execute()
       at Autofac.Core.Resolving.ResolveOperation.GetOrCreateInstance(ISharingLifeti
    meScope currentOperationScope, IComponentRegistration registration, IEnumerable`
    1 parameters)
       at Autofac.Core.Resolving.ResolveOperation.Execute(IComponentRegistration reg
    istration, IEnumerable`1 parameters)
       at Autofac.Core.Lifetime.LifetimeScope.ResolveComponent(IComponentRegistratio
    n registration, IEnumerable`1 parameters)
       at Autofac.Core.Container.ResolveComponent(IComponentRegistration registratio
    n, IEnumerable`1 parameters)
       at Autofac.ResolutionExtensions.TryResolveService(IComponentContext context,
    Service service, IEnumerable`1 parameters, Object& instance)
       at Autofac.ResolutionExtensions.ResolveService(IComponentContext context, Ser
    vice service, IEnumerable`1 parameters)
       at Autofac.ResolutionExtensions.Resolve[TService](IComponentContext context,
    IEnumerable`1 parameters)
       at Autofac.ResolutionExtensions.Resolve[TService](IComponentContext context)
       at Game.MPC2.RXS.Host.Program.Main(String[] args) in C:\_Code\Ro
    yalMail.MPC2.RedX.Service\src\Game.MPC2.RXS.Host\Program.cs:line 17
0

There are 0 best solutions below