gpt4 book ai didi

c# - 如何限制 HttpModule 每个请求只能调用一次?

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:23 48 4
gpt4 key购买 nike

这是我对 HttpModule 的实现:

包含模块的文件:

public class HttpModuleRewriter : IHttpModule
{
#region IHttpModule

public void Init(HttpApplication app)
{
app.BeginRequest += ProcessRequest;
}

public void Dispose()
{
}

#endregion

#region Protected Methods

protected void ProcessRequest(object sender, EventArgs e)
{
...
}
}

网络配置:

<?xml version="1.0"?>
<configuration>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<add name="HttpModuleRewriter" preCondition="managedHandler" type="HttpModuleRewriter" />
</modules>
</system.webServer>
</configuration>

我在 HttpModuleRewriter 类的“Init”方法中设置了断点。第一次方法在应用程序启动时调用...并且每个页面请求仅调用模块一次。

如果我快速请求页面(第二个请求将在处理第一个请求之前发送),那么方法“Init”会被额外调用几次,并且每个后续的页面请求都会导致对我的模块进行 2-3 次调用...

为什么?我怎样才能避免这种情况?

谢谢。

附言我已经将公共(public)构造函数添加到 HttpModuleRewriter 中以计算引用量,并且在我的请求期间我创建了 5 个模块......并且对于页面的每个请求实际上调用了 2 个模块......但仅适用于第一个导航页面,对于所有以下页面(我检查了其他 3 个)模块仅调用一次(仅调用 1 个实例)...

为什么第一页被处理了两次?建议的答案(使用“已初始化”标志)也无济于事。

最佳答案

如果在第二个请求出现之前 Init() 尚未完成,那么您的 HttpModule 还没有准备好。如果您的 Init() 方法中的代码应该只运行一次,那么您可以设置一个标志(bool 初始化)并使用锁来防止代码被多个线程运行,例如:

private static bool initialised;
private static object lockObject = new object();

public void Init(HttpApplication app)
{
lock(lockObject)
{
if(!initialised)
{
app.BeginRequest += ProcessRequest;
//... other code here
initialised = true;
}
}
}

更新:作为this article解释说,ASP.NET 可能会创建多个 HttpModule 实例,因此可以多次调用 Init()。这是设计使然。因此,您必须设计模块,使本应只运行一次的代码只运行一次 - 通过应用锁定,如上所示。

关于c# - 如何限制 HttpModule 每个请求只能调用一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5518814/

48 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com