Quartz.net 使用依赖注入创建作业
Quartz.net Create with job with Dependency Injection
我正在尝试使用非空构造函数在 .NET 中执行 Quartz 调度程序作业,并且我尝试使用 .NET 的默认依赖注入来提供依赖项。这是我的工作 class 需要依赖注入
public class MyJob : IJob
{
private readonly ILogger _logger;
public MyJob(ILogger<MyJob> logger)
{
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
}
public Task Execute(IJobExecutionContext context)
{
_logger.LogDebug("It's working!");
}
}
这就是我构建工作的方式
IJobDetail jobDetail = JobBuilder.Create<MyJob>().WithIdentity("MyID", "MyGroup").Build();
var triggerBuilder = TriggerBuilder.Create()
.WithIdentity("MyID")
.StartAt(DateTime.Now)
.WithCronSchedule("*/1 * * * * ?"); // Every second
var trigger = triggerBuilder.Build();
_scheduler.ScheduleJob(jobDetail, trigger)
现在,我在我的应用程序配置中定义了以下内容
// Quartz configuration.
services.AddQuartz(q =>
{
// Add dependency injection.
q.UseMicrosoftDependencyInjectionScopedJobFactory(options =>
{
// if we don't have the job in DI, allow fallback
// to configure via default constructor
options.AllowDefaultConstructor = true;
});
});
services.AddTransient<MyJob>();
// Also tried services.AddTransient<IJob, MyJob>();
如documentation on DI中所定义。然而,当我重建我的解决方案和 运行 服务器时,抛出以下错误
Quartz.SchedulerException: Problem instantiating class 'MyProject.MyNamespace.Myjob: Cannot instantiate type which has no empty constructor
Parameter name: MyJob' ---> System.ArgumentException: Cannot instantiate type which has no empty constructor
然而,我明确定义要在设置中添加 MS DI 以供 Quartz 使用,遵循他们的文档。那么我怎么能注入依赖项呢?我使用的是 Quartz 3.2.4,我安装了 'Quartz.Extensions.DependencyInjection' 包(也是 3.2.4)。
您应该在 AddQuartz
内注册您的作业和触发器。如果您查看 official documentation,您会看到 ScheduleJob
/AddJob
/AddTrigger
调用是在确保 DI 工作的回调中完成的。这可能会在 3.3 版本中改变,职位注册将不再那么严格。
我正在尝试使用非空构造函数在 .NET 中执行 Quartz 调度程序作业,并且我尝试使用 .NET 的默认依赖注入来提供依赖项。这是我的工作 class 需要依赖注入
public class MyJob : IJob
{
private readonly ILogger _logger;
public MyJob(ILogger<MyJob> logger)
{
_logger = logger ?? throw new ArgumentNullException(nameof(logger));
}
public Task Execute(IJobExecutionContext context)
{
_logger.LogDebug("It's working!");
}
}
这就是我构建工作的方式
IJobDetail jobDetail = JobBuilder.Create<MyJob>().WithIdentity("MyID", "MyGroup").Build();
var triggerBuilder = TriggerBuilder.Create()
.WithIdentity("MyID")
.StartAt(DateTime.Now)
.WithCronSchedule("*/1 * * * * ?"); // Every second
var trigger = triggerBuilder.Build();
_scheduler.ScheduleJob(jobDetail, trigger)
现在,我在我的应用程序配置中定义了以下内容
// Quartz configuration.
services.AddQuartz(q =>
{
// Add dependency injection.
q.UseMicrosoftDependencyInjectionScopedJobFactory(options =>
{
// if we don't have the job in DI, allow fallback
// to configure via default constructor
options.AllowDefaultConstructor = true;
});
});
services.AddTransient<MyJob>();
// Also tried services.AddTransient<IJob, MyJob>();
如documentation on DI中所定义。然而,当我重建我的解决方案和 运行 服务器时,抛出以下错误
Quartz.SchedulerException: Problem instantiating class 'MyProject.MyNamespace.Myjob: Cannot instantiate type which has no empty constructor Parameter name: MyJob' ---> System.ArgumentException: Cannot instantiate type which has no empty constructor
然而,我明确定义要在设置中添加 MS DI 以供 Quartz 使用,遵循他们的文档。那么我怎么能注入依赖项呢?我使用的是 Quartz 3.2.4,我安装了 'Quartz.Extensions.DependencyInjection' 包(也是 3.2.4)。
您应该在 AddQuartz
内注册您的作业和触发器。如果您查看 official documentation,您会看到 ScheduleJob
/AddJob
/AddTrigger
调用是在确保 DI 工作的回调中完成的。这可能会在 3.3 版本中改变,职位注册将不再那么严格。