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·þÎñÅäÖÃ
|
||
#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·þÎñ×¢Èë
|
||
#endregion
|
||
app.UseSwaggerService();
|
||
}
|
||
|
||
app.UseHttpsRedirection();
|
||
|
||
app.UseRouting();
|
||
|
||
app.UseAuthorization();
|
||
|
||
app.UseEndpoints(endpoints =>
|
||
{
|
||
endpoints.MapControllers();
|
||
});
|
||
}
|
||
}
|
||
}
|