首页NetCore 正文

.netcore 使用xxl-job

时间: 2022年8月2日 浏览 98

一、新建项目:xxjobDemo

Nuget: 

<PackageReference Include="DotXxlJob.Core" Version="2.3.0" />

Startup.cs

using DotXxlJob.Core;
using DotXxlJob.Core.Config;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace xxjobDemo
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}

public IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
services.Configure<XxlJobExecutorOptions>(Configuration.GetSection("xxlJob"));
services.AddXxlJobExecutor(Configuration);
services.AddSingleton<IJobHandler, DemoJobHandler>(); // 添加自定义的jobHandler
services.AddAutoRegistry(); // 自动注册
services.AddControllers();
}

// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
//启用XxlExecutor
app.UseXxlJobExecutor();

app.UseRouting();

app.UseAuthorization();

app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}

XxlJobExecutorMiddleware.cs

using DotXxlJob.Core;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace xxjobDemo
{
public class XxlJobExecutorMiddleware
{
private readonly IServiceProvider _provider;
private readonly RequestDelegate _next;

private readonly XxlRestfulServiceHandler _rpcService;
public XxlJobExecutorMiddleware(IServiceProvider provider, RequestDelegate next)
{
this._provider = provider;
this._next = next;
this._rpcService = _provider.GetRequiredService<XxlRestfulServiceHandler>();
}


public async Task Invoke(HttpContext context)
{
string contentType = context.Request.ContentType;

if ("POST".Equals(context.Request.Method, StringComparison.OrdinalIgnoreCase)
&& !string.IsNullOrEmpty(contentType)
&& contentType.ToLower().StartsWith("application/json"))
{

await _rpcService.HandlerAsync(context.Request, context.Response);

return;
}

await _next.Invoke(context);
}
}
}

DemoJobHandler.cs

using DotXxlJob.Core;
using DotXxlJob.Core.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace xxjobDemo
{
[JobHandler("demoJobHandler")]
public class DemoJobHandler : AbstractJobHandler
{
public override Task<ReturnT> Execute(JobExecuteContext context)
{
context.JobLogger.Log("receive demo job handler,parameter:{0}", context.JobParameter);

return Task.FromResult(ReturnT.SUCCESS);
}
}
}

ApplicationBuilderExtensions.cs

using Microsoft.AspNetCore.Builder;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace xxjobDemo
{
public static class ApplicationBuilderExtensions
{
public static IApplicationBuilder UseXxlJobExecutor(this IApplicationBuilder @this)
{
return @this.UseMiddleware<XxlJobExecutorMiddleware>();
}
}
}

appsettings.json

{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",

"xxlJob": {
"adminAddresses": "http://192.168.1.103:9056/xxl-job-admin",
"appName": "xxl-job-executor-dotnet",
"specialBindAddress": "192.168.1.108",
"port": 65265,
"autoRegistry": true,
"accessToken": "",
"logRetentionDays": 30
}
}

二、登录:http://192.168.1.103:9056/xxl-job-admin/jobgroup

添加 ”执行器“

添加”任务“
查看调用次数: