|
|
using Autofac;
|
|
|
using Autofac.Extensions.DependencyInjection;
|
|
|
using HybirdFrameworkCore.Autofac;
|
|
|
using HybirdFrameworkCore.Configuration;
|
|
|
using HybirdFrameworkCore.Entity;
|
|
|
using HybirdFrameworkCore.Redis;
|
|
|
using Service.Car.Server;
|
|
|
using SqlSugar;
|
|
|
using SqlSugar.IOC;
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
|
builder.Host.UseServiceProviderFactory(new AutofacServiceProviderFactory());
|
|
|
builder.Host.ConfigureContainer<ContainerBuilder>(cb =>
|
|
|
{
|
|
|
cb.Register(c =>
|
|
|
{
|
|
|
var db = new SqlSugarClient(new ConnectionConfig
|
|
|
{
|
|
|
ConfigId = AppSettingsConstVars.ConfigId,
|
|
|
ConnectionString = AppSettingsConstVars.DbSqlConnection, // <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD><D6B7><EFBFBD>
|
|
|
DbType = AppSettingsConstVars.DbDbType == IocDbType.MySql.ToString() ? DbType.MySql : DbType.SqlServer,
|
|
|
IsAutoCloseConnection = true,
|
|
|
InitKeyType = InitKeyType.Attribute // <20><><EFBFBD>ʹ<EFBFBD><CAB9>ʵ<EFBFBD><CAB5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Խ<EFBFBD><D4BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʶ<EFBFBD><CAB6><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ InitKeyType.Attribute
|
|
|
});
|
|
|
return db;
|
|
|
}).As<ISqlSugarClient>().InstancePerLifetimeScope();
|
|
|
|
|
|
|
|
|
cb.RegisterModule(new AutofacModuleRegister());
|
|
|
});
|
|
|
//跨域
|
|
|
builder.Services.AddCors(options =>
|
|
|
{
|
|
|
options.AddPolicy
|
|
|
(name: "myCors",
|
|
|
builde =>
|
|
|
{
|
|
|
builde.WithOrigins("*", "*", "*")
|
|
|
.AllowAnyOrigin()
|
|
|
.AllowAnyHeader()
|
|
|
.AllowAnyMethod();
|
|
|
}
|
|
|
);
|
|
|
});
|
|
|
|
|
|
builder.Services.AddSwaggerGen(c =>
|
|
|
{
|
|
|
var basePath = Path.GetDirectoryName(AppContext.BaseDirectory);
|
|
|
//c.IncludeXmlComments(Path.Combine(basePath, Assembly.GetExecutingAssembly().GetName().Name+".xml"), true);
|
|
|
c.IncludeXmlComments(Path.Combine(basePath, "WebStarter.xml"), true);
|
|
|
c.IncludeXmlComments(Path.Combine(basePath, "Entity.xml"), true);
|
|
|
c.IncludeXmlComments(Path.Combine(basePath, "HybirdFrameworkCore.xml"), true);
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
builder.Services.AddControllers().AddJsonOptions(configure =>
|
|
|
{
|
|
|
configure.JsonSerializerOptions.Converters.Add(new DatetimeJsonConverter());
|
|
|
});
|
|
|
//redis
|
|
|
var section = builder.Configuration.GetSection("Redis");
|
|
|
//连接字符串
|
|
|
var redisConnectionString = section.GetSection("Connection").Value;
|
|
|
//实例名称
|
|
|
var instanceName = section.GetSection("InstanceName").Value;
|
|
|
//默认数据库
|
|
|
var _defaultDB = int.Parse(section.GetSection("DefaultDB").Value ?? "0");
|
|
|
if (redisConnectionString != null && instanceName != null)
|
|
|
builder.Services.AddSingleton(new RedisHelper(redisConnectionString, instanceName, _defaultDB));
|
|
|
|
|
|
|
|
|
builder.Services.AddControllers();
|
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
|
builder.Logging.AddLog4Net("log4net.config");
|
|
|
|
|
|
var app = builder.Build();
|
|
|
|
|
|
|
|
|
// Configure the HTTP request pipeline.
|
|
|
if (app.Environment.IsDevelopment())
|
|
|
{
|
|
|
app.UseSwagger();
|
|
|
app.UseSwaggerUI();
|
|
|
app.UseStaticFiles();
|
|
|
}
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
app.UseCors("myCors");
|
|
|
app.MapControllers();
|
|
|
|
|
|
AppInfo.Container = app.Services.GetAutofacRoot();
|
|
|
|
|
|
CarServerMgr.InitServer();
|
|
|
app.Run(); |