Program.cs
4.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
using FreeSql;
using HHECS.DAQServer.Middlewares;
using HHECS.DAQServer.Services;
using Microsoft.AspNetCore.ResponseCompression;
using Microsoft.OpenApi.Models;
using NLog.Extensions.Logging;
using System.Text.Json.Serialization;
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddCors(options =>
{
options.AddPolicy("CorsPolicy", b =>
{
b.AllowAnyOrigin().AllowAnyMethod().AllowAnyHeader();
});
});
builder.Services.AddControllers().AddJsonOptions(options =>
{
options.JsonSerializerOptions.ReferenceHandler = ReferenceHandler.IgnoreCycles;
});
builder.Services.AddRequestDecompression();
builder.Services.AddResponseCompression(options =>
{
options.Providers.Add<GzipCompressionProvider>();
options.MimeTypes = ResponseCompressionDefaults.MimeTypes.Concat(["application/json"]);
});
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddScoped<DigitalTwinService>();
builder.Services.AddScoped<CommonService>();
_ = bool.TryParse(builder.Configuration.GetSection("IsProductionEnvironment").Value, out var isProductionEnvironment);
var connectionString = builder.Configuration.GetConnectionString(isProductionEnvironment ? "Production" : "Development");
IFreeSql fsql = new FreeSqlBuilder()
.UseConnectionString(DataType.SqlServer, connectionString)
//.UseMonitorCommand(cmd => Console.WriteLine($"Sql:{cmd.CommandText}"))//监听SQL语句
.UseAutoSyncStructure(false)//自动同步实体结构到数据库,FreeSql不会扫描程序集,只有CRUD时才会生成表。
.Build();
builder.Services.AddSingleton(fsql);
builder.Services.AddSingleton<DataCacheService>();
builder.Services.AddSingleton<CommonService>();
//builder.Services.AddHostedService<EquipmentDataRecordHandleBackgroundService>();
builder.Services.AddHostedService<ClientStatusUpdateBackgroundService>();
builder.Services.AddHostedService<EquipmentStatusUpdateBackgroundService>();
builder.Services.AddHostedService<RabbitMQHandleBackgroundService>();
builder.Services.AddHostedService<TrafficBackgroundService>();
builder.Services.AddDistributedMemoryCache();
//builder.Services.AddStackExchangeRedisCache(options =>
//{
// options.Configuration = builder.Configuration.GetConnectionString("Redis");
// options.InstanceName = "SampleInstance";
//});
builder.Services.AddSwaggerGen(c =>
{
c.SwaggerDoc("v1", new OpenApiInfo
{
Title = $"数据接收端{(isProductionEnvironment ? string.Empty : "[测试版]")} - WebApi",
License = new OpenApiLicense
{
Name = "长沙华恒机器人系统有限公司",
Url = new Uri("http://www.huahengrobot.com")
},
Version = "v1",
});
c.IncludeXmlComments(Path.Combine(AppContext.BaseDirectory, "HHECS.DAQServer.xml"), true);
c.OrderActionsBy(o => o.RelativePath);
});
builder.Services.AddLogging(x => x.AddNLog());
var app = builder.Build();
// Configure the HTTP request pipeline.
//if (app.Environment.IsDevelopment())
//{
//}
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "HHECS.DAQServer WebApi");
c.RoutePrefix = string.Empty;
});
// 注册中间件
app.UseMiddleware<TrafficMiddleware>();
app.UseHttpsRedirection();
app.UseRequestDecompression();
app.UseResponseCompression();
app.UseAuthorization();
app.UseCors("CorsPolicy");
app.MapControllers();
app.Run();
}
}