异步任务,HttpContext.Current为null解决办法

Posted lhking

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异步任务,HttpContext.Current为null解决办法相关的知识,希望对你有一定的参考价值。

最近在开发一个后台管理系统项目,为了提高登录的速度,就把记录登录日志放到一个异步任务里面。

Action taskAction = () =>
{
    SaveLog();
};
Task task = new Task(taskAction);
task.Start();

有一段时间日志记录是正常的,突然有一天就不work了,本地调试也能重现这个错误,是System.Web.HttpContext.Current为null造成的,获取不了当前的用户名。

在网上搜了一下,确实很多用户遇到了,有推荐缓存System.Web.HttpContext.Current的,感觉挺麻烦的。

发现这个Current是可以set的,所以就想把当前线程里面的HttpContext.Current传到日志线程里面。

public static HttpContext Current { get; set; }

Action是个委托,委托是可以+=的,于是就封装了一下。

public class AsyncTaskHelper
{
    /// <summary>
    /// 异步任务之前,设置HttpContext.Current
    /// </summary>
    /// <param name="context"></param>
    /// <param name="action"></param>
    public static void StartTask(HttpContext context, Action action)
    {
        Action newAction = () =>
        {
            if (context == null)
            {
                throw new Exception("请确保HttpContext.Current不为null");
            }
            HttpContext.Current = context;
        };
        newAction += action;
        Task task = new Task(newAction);
        task.Start();
    }
}

调用也很简单

AsyncTaskHelper.StartTask(System.Web.HttpContext.Current, taskAction);

 

以上是关于异步任务,HttpContext.Current为null解决办法的主要内容,如果未能解决你的问题,请参考以下文章

WCF REST HttpContext.Current 异步/等待

HttpContext.Current 在异步回调中为空

异步 HttpContext.Current 为空null 另一种解决方法

异步操作后的 HttpContext.Current.Items

将 HttpContext.Current.User 与异步等待一起使用的正确方法

HttpContext.Current并非无处不在