可以参考:Volo.Abp.BackgroundJobs.DemoApp.HangFire 官方 Demo
我知道啊,我想问看看有没有人去研究源码懂的
@花开花落-2014: github上abp有官方的DEMO,已更新回答。
参考如下:
public override void PreConfigureServices(ServiceConfigurationContext context)
{
#region Hangfire Server集成在本Web,BackgroundJob Hangfire Support
var configuration = context.Services.GetConfiguration();
context.Services.PreConfigure<IGlobalConfiguration>(options => {
options.UseSqlServerStorage(configuration.GetConnectionString("HangfireConnection"));
});
#endregion
}
[DependsOn(typeof(AbpBackgroundJobsHangfireModule))]