-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStartup.cs
62 lines (50 loc) · 1.94 KB
/
Startup.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
using System.Reflection;
using Autofac;
using PollySampleWebApplication.Configurations;
using PollySampleWebApplication.Services;
using PollySampleWebApplication.Services.Decorators;
using PollySampleWebApplication.Services.Registries;
namespace PollySampleWebApplication;
public class Startup
{
public Startup(IConfiguration configuration)
{
ConfigManager.SetConfig(configuration.Get<Config>());
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public void ConfigureServices(IServiceCollection services)
{
services.AddCors(z =>
{
z.AddPolicy("AllowOrigin", options => options.AllowAnyOrigin()
.AllowAnyHeader()
.AllowAnyMethod());
});
services.AddControllers();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseCors(options => options
.AllowAnyHeader()
.AllowAnyMethod()
.SetIsOriginAllowed(host => true)
.AllowCredentials());
app.UseAuthentication();
if (env.IsDevelopment())
app.UseDeveloperExceptionPage();
app.UseRouting();
app.UseEndpoints(endpoints => { endpoints.MapControllers(); });
}
public void ConfigureContainer(ContainerBuilder builder)
{
builder.RegisterAssemblyTypes(Assembly.GetExecutingAssembly())
.Where(a => typeof(IService).IsAssignableFrom(a) && !a.Name.Contains("Decorator"))
.AsImplementedInterfaces()
.InstancePerLifetimeScope();
builder.RegisterDecorator<PollyDecorator, IService>();
builder.RegisterType<CircuitBreakerPolicyRegistry>().As<ICircuitBreakerRegistry>().SingleInstance();
builder.RegisterType<TimeoutPolicyRegistry>().As<ITimeoutPolicyRegistry>().SingleInstance();
builder.RegisterType<BulkHeadRegistry>().As<IBulkHeadRegistry>().SingleInstance();
}
}