You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.5 KiB
C#

4 years ago
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
4 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using AccessStudy.Core;
using System.Reflection;
4 years ago
namespace AccessStudy.WebApi
4 years ago
{
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.AddControllers();
//实现Oledb和ODBC的切换
//services.AddScoped<IStudentIDal,StudentOdbcDal>();
services.AddScoped<IStudentIDal,StudentOledbDal>();
4 years ago
#region Swagger
services.AddSwaggerGen(option =>
{
option.SwaggerDoc("v1", new Microsoft.OpenApi.Models.OpenApiInfo() { Title = "API", Version = "v1" });
// Set the comments path for the Swagger JSON and UI.
var xmlFile = $"{Assembly.GetExecutingAssembly().GetName().Name}.xml";
var xmlPath = System.IO.Path.Combine(AppContext.BaseDirectory, xmlFile);
4 years ago
//不显示控制器注释
//option.IncludeXmlComments(xmlPath);
//显示控制器注释
option.IncludeXmlComments(xmlPath, true);
});
//services.ConfigureSwaggerGen(option =>
//{
//});
4 years ago
#endregion
4 years ago
}
// 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(option =>
{
option.SwaggerEndpoint("/swagger/v1/swagger.json", "AccessStudy WebApi v1");
});
4 years ago
app.UseRouting();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
}