参考地址:https://www.cnblogs.com/xiyuanMore/p/15582976.html
git下载地址:https://github.com/procodeguide/ProCodeGuide.Samples.Hangfire
1. 引用NuGet管理包
hangfire,hangfire.aspnetcore
2. 在启动时配置 Hangfire
services.AddHangfire(x => x.UseSqlServerStorage("Data Source=.;Initial Catalog=Rbac;Integrated Security=True"));
services.AddHangfireServer();
连接数据库
3.添加 Hangfire 仪表板 UI
app.UseHangfireDashboard();
4. 检查UI仪表盘
5. Hangfire 数据库
连接数据库,创建数据表
6. 在 ASP.NET Core 中使用 Hangfire 创建作业
注入服务
7.添加控制器
8. 在Startup写任务
第一个是循环任务,"0/1 * "是时间,间隔多长时间执行一次,
第二个是延时任务 最后是定时什么时候执行
qq邮箱
1. 完成配置文件
引用NuGet文件
"EmailSettings": {
"EmailId": "[email protected]",
"Name": "Support - Pro Code Guide",
"Password": "drnhtiiieluebebh",
"Host": "smtp.qq.com",
"Port": 465,
"UseSSL": true
},
EmailId:是发邮箱的账号
Password:不是自己的qq密码,是在qq邮箱生成的授权码
Host:是qq的一个host
2. 在Startup配置
3. 创建一个类
和配置文件的名字一样