Program.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. using System.Text.Json;
  2. using Base;
  3. using Common;
  4. using Extensions;
  5. using Filters;
  6. using Infrastructure;
  7. using Infrastructure.Model;
  8. using Microsoft.AspNetCore.Mvc;
  9. using Microsoft.AspNetCore.Server.Kestrel.Core;
  10. using Middleware;
  11. using Services;
  12. using SummerBoot.Core;
  13. using Util;
  14. var builder = WebApplication.CreateBuilder(args);
  15. // Add services to the container.
  16. builder.Services.AddControllers();
  17. // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
  18. builder.Services.AddEndpointsApiExplorer();
  19. //注入HttpContextAccessor
  20. builder.Services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
  21. //IPRatelimit
  22. // builder.Services.AddIPRate(builder.Configuration);
  23. builder.Services.AddSession();
  24. builder.Services.AddHttpContextAccessor();
  25. builder.Services.Configure<KestrelServerOptions>(x => x.AllowSynchronousIO = true).Configure<IISServerOptions>(x => x.AllowSynchronousIO = true);
  26. //绑定整个对象到Model上
  27. builder.Services.Configure<OptionsSetting>(builder.Configuration);
  28. // builder.Configuration.AddJsonFile("iprate.json");
  29. //配置文件
  30. builder.Services.AddSingleton(new AppSettings(builder.Configuration));
  31. //请求大小限制
  32. builder.Services.AddRequestLimit(builder.Configuration);
  33. //注册REDIS 服务
  34. var openRedis = builder.Configuration["RedisServer:open"];
  35. if (openRedis == "1")
  36. {
  37. RedisServer.Initalize();
  38. }
  39. //配置文件
  40. builder.Services.AddSingleton(new AppSettings(builder.Configuration));
  41. //app服务注册
  42. builder.Services.AddAppService();
  43. builder.Services.AddMvc(options =>
  44. {
  45. options.Filters.Add(typeof(GlobalActionMonitor));//全局注册
  46. options.Filters.Add(typeof(AuthorizationFilter));
  47. })
  48. .AddJsonOptions(options =>
  49. {
  50. //options.JsonSerializerOptions.NumberHandling = JsonNumberHandling.AllowReadingFromString | JsonNumberHandling.WriteAsString;
  51. options.JsonSerializerOptions.WriteIndented = true;
  52. options.JsonSerializerOptions.Converters.Add(new JsonConverterUtil.DateTimeConverter());
  53. options.JsonSerializerOptions.Converters.Add(new JsonConverterUtil.DateTimeNullConverter());
  54. options.JsonSerializerOptions.Converters.Add(new StringConverter());
  55. //PropertyNamingPolicy属性用于前端传过来的属性的格式策略,目前内置的仅有一种策略CamelCase
  56. options.JsonSerializerOptions.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
  57. //options.JsonSerializerOptions.PropertyNameCaseInsensitive = true;//属性可以忽略大小写格式,开启后性能会降低
  58. });
  59. builder.Services.AddSummerBoot();
  60. builder.Services.AddSummerBootFeign();
  61. var app = builder.Build();
  62. InternalApp.ServiceProvider = app.Services;
  63. InternalApp.Configuration = builder.Configuration;
  64. InternalApp.WebHostEnvironment = app.Environment;
  65. //初始化db
  66. builder.Services.AddDb(app.Environment);
  67. var workId = builder.Configuration["workId"].ParseToInt();
  68. if (app.Environment.IsDevelopment())
  69. {
  70. workId += 1;
  71. }
  72. SnowFlakeSingle.WorkId = workId;
  73. //使用全局异常中间件
  74. app.UseMiddleware<GlobalExceptionMiddleware>();
  75. app.Use(next => new RequestDelegate(
  76. async context =>
  77. {
  78. context.Request.EnableBuffering();
  79. await next(context);
  80. }
  81. ));
  82. // Configure the HTTP request pipeline.
  83. if (app.Environment.IsDevelopment())
  84. {
  85. }
  86. app.UseHttpsRedirection();
  87. app.UseAuthorization();
  88. app.MapControllerRoute(
  89. name: "default",
  90. pattern: "{controller=Home}/{action=Index}/{id?}");
  91. app.MapControllers();
  92. app.Run();