Ich habe eine benutzerdefinierte HttpModule, wo ich HTTP-Anfragen verfolgen, Teil der Implementierung ist wie folgt;Wird HttpContext injiziert, indem Konstruktorinjektion in HttpModule falsch verwendet wird?
private readonly HttpContextBase _httpContext;
private readonly ISessionContext _sessionContext;
public ASHttpModule(HttpContextBase httpContext,
ISessionContext sessionContext)
{
this._httpContext = httpContext;
this._sessionContext = sessionContext;
}
public void Init(HttpApplication context)
{
context.BeginRequest += Context_BeginRequest;
context.EndRequest += Context_EndRequest;
}
private void Context_BeginRequest(object sender, EventArgs e)
{
Stopwatch stopwatch = new Stopwatch();
_httpContext.Items["Stopwatch"] = stopwatch;
stopwatch.Start();
}
private void Context_EndRequest(object sender, EventArgs e)
{
Stopwatch stopwatch = (Stopwatch)_httpContext.Items["Stopwatch"];
if (stopwatch == null)
return;
stopwatch.Stop();
TimeSpan ts = stopwatch.Elapsed;
//Check current httprequest variables and log if have to
}
Hier meine Abhängigkeitsregistrierung (mit Autofac);
builder.RegisterType<WebSessionContext>()
.As<ISessionContext>().InstancePerRequest();
builder.Register(c => (new HttpContextWrapper(HttpContext.Current) as HttpContextBase))
.As<HttpContextBase>()
.InstancePerRequest();
builder.Register(c => c.Resolve<HttpContextBase>().Request)
.As<HttpRequestBase>()
.InstancePerRequest();
builder.Register(c => c.Resolve<HttpContextBase>().Server)
.As<HttpServerUtilityBase>()
.InstancePerRequest();
builder.Register(c => c.Resolve<HttpContextBase>().Session)
.As<HttpSessionStateBase>()
.InstancePerRequest();
Problem hier ist Httpmodule nur einmal aufgebaut ist, während Httpcontext für jede Anforderung injiziert werden muss. Die Lösung, die ich gefunden habe, verwendet DependencyResolver als;
HttpContextBase _httpContext = DependencyResolver.Current.GetService<HttpContextBase>();
Allerdings möchte ich diese Nutzung zu vermeiden, da Servicelocator als anti-Muster betrachtet wird.
Gibt es eine Lösung, um HttpContext in HttpModule ohne DependencyResolver zu injizieren?
Die Ursache des Problems ist, dass Sie [Laufzeitdaten in Ihre Komponenten] injizieren (https://www.cuttingedge.it/blogs/steven/pivot/entry.php?id=99). – Steven
Danke für den Blogbeitrag. Hat mir geholfen, meinen Fehler zu sehen. Elegante Lösung. –