啊鑫
2024-10-18 b687c2bac305b570e81a650a64a4a7d440671c4b
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
106
107
108
109
110
111
112
using MES.Service.Dto.@base;
using MES.Service.util;
using Microsoft.OpenApi.Models;
using Newtonsoft.Json;
using Newtonsoft.Json.Serialization;
using Swashbuckle.AspNetCore.SwaggerUI;
using System.Reflection;
 
namespace MESApplication;
 
public class Startup
{
    public readonly string MyAllowSpecificOrigins =
        "_myAllowSpecificOrigins";
 
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
 
        new AppsettingsUtility().Initial(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.AddControllers();
 
        // 读取 系统 设置并注入到服务中
        services.Configure<AppSettings>(
            Configuration.GetSection("AppSettings"));
 
        services.AddSwaggerGen(c =>
        {
            c.SwaggerDoc("v1",
                new OpenApiInfo
                    { Title = "MESApplication.Api", Version = "v1" });
            var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
            var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
            c.IncludeXmlComments(xmlPath, true);
        });
 
        //配置JSON.NET
        services.AddControllers().AddNewtonsoftJson(opt =>
        {
            //忽略循环引用
            opt.SerializerSettings.ReferenceLoopHandling =
                ReferenceLoopHandling.Ignore;
 
            //不改变字段大小
            // opt.SerializerSettings.ContractResolver =
            //     new DefaultContractResolver();
 
            // 设置命名策略为驼峰命名
            opt.SerializerSettings.ContractResolver =
                new CamelCasePropertyNamesContractResolver();
 
            //返回给前端的时间格式化
            opt.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
        });
 
        //配置可以跨域
        services.AddCors(options =>
        {
            options.AddPolicy(MyAllowSpecificOrigins,
                builder => builder.AllowAnyOrigin()
                    .AllowAnyHeader()
                    .WithMethods("GET", "POST", "HEAD", "PUT", "DELETE",
                        "OPTIONS")
            );
        });
 
        #region 接口行动过滤器
 
        services.AddControllers(options => { options.Filters.Add(new ActionFilter()); });
        var serviceProvider = services.BuildServiceProvider();
        ActionFilter.LoggerError = serviceProvider.GetRequiredService<ILogger<ActionFilter>>();
 
        #endregion
    }
 
    // 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();
            app.UseSwagger();
            app.UseSwaggerUI(c =>
            {
                c.InjectJavascript("");
                c.SwaggerEndpoint("/swagger/v1/swagger.json", "API");
                c.DocExpansion(DocExpansion
                    .None);
                c.DefaultModelsExpandDepth(-1);
            });
        }
 
        app.UseCors(MyAllowSpecificOrigins); //添加这个
 
        app.UseRouting();
 
        app.UseAuthorization();
 
        app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
 
        //////////////////////////
 
        ///////////////////////////
    }
}