mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-05 17:20:52 +08:00
59 lines
1.7 KiB
C#
59 lines
1.7 KiB
C#
|
|
using Microsoft.AspNetCore.Builder;
|
|||
|
|
using Microsoft.AspNetCore.Hosting;
|
|||
|
|
using Microsoft.Extensions.Configuration;
|
|||
|
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
|
using Yi.Framework.Interface;
|
|||
|
|
using Yi.Framework.Service;
|
|||
|
|
using Yi.Framework.WebCore.MiddlewareExtend;
|
|||
|
|
|
|||
|
|
namespace Yi.Framework.PageDetail
|
|||
|
|
{
|
|||
|
|
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)
|
|||
|
|
{
|
|||
|
|
services.AddIocService(Configuration);
|
|||
|
|
|
|||
|
|
services.AddControllers();
|
|||
|
|
#region
|
|||
|
|
//Swagger<65><72><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
#endregion
|
|||
|
|
services.AddSwaggerService<Program>("Yi.Framework.OcelotGateway.PageDetail");
|
|||
|
|
|
|||
|
|
services.AddScoped<IUserService,UserService>();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 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();
|
|||
|
|
#region
|
|||
|
|
//Swagger<65><72><EFBFBD><EFBFBD>ע<EFBFBD><D7A2>
|
|||
|
|
#endregion
|
|||
|
|
app.UseSwaggerService();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
app.UseHttpsRedirection();
|
|||
|
|
|
|||
|
|
app.UseRouting();
|
|||
|
|
|
|||
|
|
app.UseAuthorization();
|
|||
|
|
|
|||
|
|
app.UseEndpoints(endpoints =>
|
|||
|
|
{
|
|||
|
|
endpoints.MapControllers();
|
|||
|
|
});
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|