181 lines
4.5 KiB
C#
181 lines
4.5 KiB
C#
using Autofac;
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.AspNetCore.Hosting;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Yi.Framework.Core;
|
|
using Yi.Framework.Model.ModelFactory;
|
|
using Yi.Framework.WebCore.BuilderExtend;
|
|
using Yi.Framework.WebCore.MiddlewareExtend;
|
|
using Yi.Framework.WebCore.Utility;
|
|
|
|
namespace Yi.Framework.ApiMicroservice
|
|
{
|
|
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)
|
|
{
|
|
#region
|
|
//Ioc配置
|
|
#endregion
|
|
services.AddIocService(Configuration);
|
|
|
|
#region
|
|
//Quartz任务调度配置
|
|
#endregion
|
|
services.AddQuartzService();
|
|
|
|
#region
|
|
//控制器+过滤器配置
|
|
#endregion
|
|
services.AddControllers(optios=> {
|
|
//optios.Filters.Add(typeof(CustomExceptionFilterAttribute));
|
|
}).AddJsonFileService();
|
|
|
|
#region
|
|
//Swagger服务配置
|
|
#endregion
|
|
services.AddSwaggerService<Program>();
|
|
|
|
#region
|
|
//跨域服务配置
|
|
#endregion
|
|
services.AddCorsService();
|
|
|
|
#region
|
|
//Jwt鉴权配置
|
|
#endregion
|
|
services.AddJwtService();
|
|
|
|
#region
|
|
//数据库配置
|
|
#endregion
|
|
services.AddDbService();
|
|
|
|
#region
|
|
//Redis服务配置
|
|
#endregion
|
|
services.AddRedisService();
|
|
|
|
#region
|
|
//RabbitMQ服务配置
|
|
#endregion
|
|
services.AddRabbitMQService();
|
|
|
|
#region
|
|
//ElasticSeach服务配置
|
|
#endregion
|
|
services.AddElasticSeachService();
|
|
|
|
#region
|
|
//短信服务配置
|
|
#endregion
|
|
services.AddSMSService();
|
|
|
|
#region
|
|
//CAP服务配置
|
|
#endregion
|
|
services.AddCAPService<Program>();
|
|
}
|
|
|
|
#region Autofac容器注入
|
|
public void ConfigureContainer(ContainerBuilder containerBuilder)
|
|
{
|
|
#region
|
|
//交由Module依赖注入
|
|
#endregion
|
|
containerBuilder.RegisterModule<CustomAutofacModule>();
|
|
}
|
|
#endregion
|
|
|
|
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
|
|
public void Configure(IApplicationBuilder app, IWebHostEnvironment env,IDbContextFactory _DbFactory, CacheClientDB _cacheClientDB)
|
|
{
|
|
//if (env.IsDevelopment())
|
|
{
|
|
#region
|
|
//测试页面注入
|
|
#endregion
|
|
app.UseDeveloperExceptionPage();
|
|
|
|
#region
|
|
//Swagger服务注入
|
|
#endregion
|
|
app.UseSwaggerService();
|
|
}
|
|
#region
|
|
//错误抓取反馈注入
|
|
#endregion
|
|
app.UseErrorHandlingService();
|
|
|
|
#region
|
|
//静态文件注入
|
|
#endregion
|
|
//app.UseStaticFiles();
|
|
|
|
#region
|
|
//HttpsRedirection注入
|
|
#endregion
|
|
app.UseHttpsRedirection();
|
|
|
|
#region
|
|
//路由注入
|
|
#endregion
|
|
app.UseRouting();
|
|
|
|
#region
|
|
//跨域服务注入
|
|
#endregion
|
|
app.UseCorsService();
|
|
|
|
#region
|
|
//健康检查注入
|
|
#endregion
|
|
app.UseHealthCheckMiddleware();
|
|
|
|
#region
|
|
//鉴权注入
|
|
#endregion
|
|
app.UseAuthentication();
|
|
|
|
#region
|
|
//授权注入
|
|
#endregion
|
|
app.UseAuthorization();
|
|
|
|
#region
|
|
//Consul服务注入
|
|
#endregion
|
|
app.UseConsulService();
|
|
|
|
#region
|
|
//数据库种子注入
|
|
#endregion
|
|
app.UseDbSeedInitService(_DbFactory);
|
|
|
|
#region
|
|
//redis种子注入
|
|
#endregion
|
|
app.UseRedisSeedInitService(_cacheClientDB);
|
|
|
|
#region
|
|
//Endpoints注入
|
|
#endregion
|
|
app.UseEndpoints(endpoints =>
|
|
{
|
|
endpoints.MapControllers();
|
|
|
|
});
|
|
}
|
|
}
|
|
}
|