113/03/12
This commit is contained in:
31
HangfireExample.WebService/Extensions/HangfireExtension.cs
Normal file
31
HangfireExample.WebService/Extensions/HangfireExtension.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using Hangfire;
|
||||
using Hangfire.Storage.SQLite;
|
||||
|
||||
namespace HangfireExample.WebService.Extensions
|
||||
{
|
||||
/// <summary>
|
||||
/// Hangfire 的擴充方法。
|
||||
/// </summary>
|
||||
public static class HangfireExtension
|
||||
{
|
||||
/// <summary>
|
||||
/// 加入 Hangfire 服務。
|
||||
/// </summary>
|
||||
/// <param name="services"></param>
|
||||
/// <returns></returns>
|
||||
public static IServiceCollection AddHangfire(this IServiceCollection services)
|
||||
{
|
||||
// 將 Hangfire 加入服務,使用 SQLite 作為儲存區
|
||||
services.AddHangfire(configuration => configuration
|
||||
.UseSQLiteStorage("HangfireExample.db"));
|
||||
return services;
|
||||
}
|
||||
|
||||
public static WebApplication UseHangfireDashboard(this WebApplication app, IConfiguration configuration)
|
||||
{
|
||||
// HangfireDashboard 預設路由為 /Hangfire
|
||||
app.UseHangfireDashboard(configuration.GetValue<string>("DashboardRoot"));
|
||||
return app;
|
||||
}
|
||||
}
|
||||
}
|
||||
19
HangfireExample.WebService/HangfireExample.WebService.csproj
Normal file
19
HangfireExample.WebService/HangfireExample.WebService.csproj
Normal file
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Hangfire" Version="1.8.11" />
|
||||
<PackageReference Include="Hangfire.Storage.SQLite" Version="0.4.1" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="Controllers\" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
BIN
HangfireExample.WebService/HangfireExample.db
Normal file
BIN
HangfireExample.WebService/HangfireExample.db
Normal file
Binary file not shown.
29
HangfireExample.WebService/Program.cs
Normal file
29
HangfireExample.WebService/Program.cs
Normal file
@@ -0,0 +1,29 @@
|
||||
using HangfireExample.WebService.Extensions;
|
||||
|
||||
var builder = WebApplication.CreateBuilder(args);
|
||||
|
||||
// Add services to the container.
|
||||
|
||||
builder.Services.AddControllers();
|
||||
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
||||
builder.Services.AddEndpointsApiExplorer();
|
||||
builder.Services.AddSwaggerGen();
|
||||
|
||||
builder.Services.AddHangfire();
|
||||
|
||||
var app = builder.Build();
|
||||
|
||||
// Configure the HTTP request pipeline.
|
||||
if (app.Environment.IsDevelopment())
|
||||
{
|
||||
app.UseSwagger();
|
||||
app.UseSwaggerUI();
|
||||
}
|
||||
|
||||
app.UseAuthorization();
|
||||
|
||||
app.MapControllers();
|
||||
|
||||
app.UseHangfireDashboard(builder.Configuration);
|
||||
|
||||
app.Run();
|
||||
31
HangfireExample.WebService/Properties/launchSettings.json
Normal file
31
HangfireExample.WebService/Properties/launchSettings.json
Normal file
@@ -0,0 +1,31 @@
|
||||
{
|
||||
"$schema": "http://json.schemastore.org/launchsettings.json",
|
||||
"iisSettings": {
|
||||
"windowsAuthentication": false,
|
||||
"anonymousAuthentication": true,
|
||||
"iisExpress": {
|
||||
"applicationUrl": "http://localhost:1922",
|
||||
"sslPort": 0
|
||||
}
|
||||
},
|
||||
"profiles": {
|
||||
"http": {
|
||||
"commandName": "Project",
|
||||
"dotnetRunMessages": true,
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"applicationUrl": "http://localhost:5185",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
},
|
||||
"IIS Express": {
|
||||
"commandName": "IISExpress",
|
||||
"launchBrowser": true,
|
||||
"launchUrl": "swagger",
|
||||
"environmentVariables": {
|
||||
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
8
HangfireExample.WebService/appsettings.Development.json
Normal file
8
HangfireExample.WebService/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
10
HangfireExample.WebService/appsettings.json
Normal file
10
HangfireExample.WebService/appsettings.json
Normal file
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*",
|
||||
"DashboardRoot": "/hangfire"
|
||||
}
|
||||
Reference in New Issue
Block a user