Ciao, ho un'applicazione MVC in cui ho definito alcune dipendenze alla mia API Web.Come si risolvono i controller API Web utilizzando Autofac in un'API Web mista e un'applicazione MVC?
public class AutofacWebApiDependenceResolver : IDependencyResolver
{
private readonly IComponentContext container;
public AutofacWebApiDependenceResolver(IContainer container)
{
if (container == null)
{
throw new ArgumentNullException("container");
}
this.container = container;
}
public object GetService(Type serviceType)
{
if (serviceType == null)
{
throw new ArgumentNullException("serviceType");
}
var ret = this.container.ResolveOptional(serviceType) ;
return ret;
}
public IEnumerable<object> GetServices(Type serviceType)
{
if (serviceType == null)
{
throw new ArgumentNullException("serviceType");
}
Type enumerableType = typeof(IEnumerable<>).MakeGenericType(serviceType);
var ret = (IEnumerable<object>)this.container.ResolveOptional(enumerableType);
return ret;
}
}
Poi nella mia classe di avvio automatico sto chiamando in Application_Start come segue:
GlobalConfiguration.Configuration.DependencyResolver = new AutofacWebApiDependenceResolver((IContainer)container);
Quando il debug del codice, posso vedere ci sono le registrazioni di tutti i servizi con la mia DependencyResolver, ma sono ancora ricevendo il seguente errore:
An error has occurred.Type 'WebApp.Controllers.AuthenticateController' does not have a default constructor
Qui è il codice per il mio controller:
public class AuthenticateController : ApiController
{
private readonly IFormsAuthenticationService formsAuthenticationService;
private readonly IMemberShipProvider memberShip;
private readonly IDataService dataService;
public AuthenticateController(
IMemberShipProvider memberShip,
IFormsAuthenticationService formsAuthenticationService, IDataService dataService)
{
this.memberShip = memberShip;
this.formsAuthenticationService = formsAuthenticationService;
this.dataService= dataService;
}
}
Come posso portare i parametri ai controller api. I controller semplici funzionano correttamente. guida
hai registrato i tuoi controller chiamando 'builder.RegisterApiControllers (Assembly.GetExecutingAssembly());'? – nemesv
dare un'occhiata a questo: http://stackoverflow.com/questions/9450282/autofac-and-asp-net-web-api-apicontroller – freshbm
@freshbm Sì, ho visto che, non ha ottenuto la soluzione: -S – progrAmmar