博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hangfire控制台应用程序中添加控制面板
阅读量:6187 次
发布时间:2019-06-21

本文共 1669 字,大约阅读时间需要 5 分钟。

1.使用nuget 管理包安装 Microsoft.AspNet.WebApi.OwinSelfHost 

2.根目录添加新建类 名为:Startup.cs

public class Startup    {        // This code configures Web API. The Startup class is specified as a type        // parameter in the WebApp.Start method.        public void Configuration(IAppBuilder app)        {            app.UseHangfireDashboard();        }    }

3.打开Program.cs

static void Main(string[] args)        {            GlobalConfiguration.Configuration               .SetDataCompatibilityLevel(CompatibilityLevel.Version_170)               .UseSimpleAssemblyNameTypeSerializer()               .UseRecommendedSerializerSettings()               .UseSqlServerStorage("Server=.;User ID=sa;Password=sasa;database=Hangfire;", new SqlServerStorageOptions               {                   CommandBatchMaxTimeout = TimeSpan.FromMinutes(5),                   SlidingInvisibilityTimeout = TimeSpan.FromMinutes(5),                   QueuePollInterval = TimeSpan.Zero,                   UseRecommendedIsolationLevel = true,                   UsePageLocksOnDequeue = true,                   DisableGlobalLocks = true               });            using (var server = new BackgroundJobServer())            {                BackgroundJob.Enqueue(() => Console.Write("11"));                string baseAddress = "http://localhost:9001/";                using (WebApp.Start
(url: baseAddress)) { Console.WriteLine("Hangfire Server started. Press any key to exit..."); Console.ReadKey(); } } }

4.在浏览器中打开:http://localhost:9001/hangfire 即可访问

转载于:https://www.cnblogs.com/lkd3063601/p/10833287.html

你可能感兴趣的文章
微信小程序 - app.js文件
查看>>
linux下配置squid代理服务器
查看>>
cocoapod 更新失败
查看>>
linux 运维系统检测命令(持续更新)
查看>>
FreeBSD基础学习
查看>>
Android查看KeyStore信息
查看>>
在老男孩生活的感悟
查看>>
信息安全:防泄密软件设计构想与选型建议
查看>>
mybatis学习七 单多表关联
查看>>
AGG第三十三课 line_profile_aa 参数分析说明
查看>>
FTP原理和修改FTP默认端口
查看>>
零基础过五门CPA的一些经验及教训分享
查看>>
Windows服务的手动添加和删除方法
查看>>
计算机基本知识(7002)---RS485智能仪表
查看>>
加快菜单显示速度
查看>>
iphone中使用NSoperation实现图片异步加载
查看>>
AndroidAnnnotations注入框架的工作原理(二)
查看>>
用fail2ban阻止密码尝试***
查看>>
/etc/resolv.conf文件被复写的解决
查看>>
Windows抓127.0.0.1的包
查看>>