AspectCore Project 是适用于Asp.Net Core 平台的轻量级 Aop(Aspect-orIEnted programming) 解决方案,它更好的遵循Asp.Net Core的模块化开发理念,使用AspectCore可以更容易构建低耦合、易扩展的Web应用程序。AspectCore使用Emit实现高效的动态代理从而不依赖任何第三方Aop库。
开使使用AspectCore启动 Visual Studio。从 file 菜单, 选择 New > Project。选择 ASP.NET Core Web Application 项目模版,创建新的 ASP.NET Core Web Application 项目。
从 Nuget 安装 AspectCore.Extensions.DependencyInjection
package:
PM> Install-Package AspectCore.Extensions.DependencyInjection
在一般情况下可以使用抽象的InterceptorAttribute
自定义特性类,它实现IInterceptor
接口。AspectCore默认实现了基于Attribute
的拦截器配置。我们的自定义拦截器看起来像下面这样:
public class CustomInterceptorAttribute : InterceptorAttribute{ public async overrIDe Task Invoke(IAspectContext context, AspectDelegate next) { try { Console.Writeline("Before service call"); await next(context); } catch (Exception) { Console.Writeline("Service threw an exception!"); throw; } finally { Console.Writeline("After service call"); } } }
定义ICustomService
接口和它的实现类CustomService
:
public interface ICustomService{ [CustomInterceptor] voID Call();}public class CustomService : ICustomService{ public voID Call() { Console.Writeline("service calling..."); }}
在HomeController
中注入ICustomService
:
public class HomeController : Controller{ private Readonly ICustomService _service; public HomeController(ICustomService service) { _service = service; } public IActionResult Index() { _service.Call(); return VIEw(); }}
注册ICustomService
,接着,在ConfigureServices
中配置创建代理类型的容器:
public IServiceProvIDer ConfigureServices(IServiceCollection services){ services.AddTransIEnt<ICustomService, CustomService>(); services.AddMvc(); services.AddAspectCore(); return services.BuildAspectCoreServiceProvIDer();}
拦截器配置。首先安装AspectCore.Extensions.Configuration
package:
PM> Install-Package AspectCore.Extensions.Configuration
全局拦截器。使用AddAspectCore(Action<AspectCoreOptions>)
的重载方法,其中AspectCoreOptions
提供InterceptorFactorIEs
注册全局拦截器:
services.AddAspectCore(config => { config.InterceptorFactorIEs.AddTyped<CustomInterceptorAttribute>(); });
带构造器参数的全局拦截器,在CustomInterceptorAttribute
中添加带参数的构造器:
public class CustomInterceptorAttribute : InterceptorAttribute{ private Readonly string _name; public CustomInterceptorAttribute(string name) { _name = name; } public async overrIDe Task Invoke(AspectContext context, AspectDelegate next) { try { Console.Writeline("Before service call"); await next(context); } catch (Exception) { Console.Writeline("Service threw an exception!"); throw; } finally { Console.Writeline("After service call"); } }}
修改全局拦截器注册:
services.AddAspectCore(config =>{ config.InterceptorFactorIEs.AddTyped<CustomInterceptorAttribute>(args: new object[] { "custom" });});
作为服务的全局拦截器。在ConfigureServices
中添加:
services.AddTransIEnt<CustomInterceptorAttribute>(provIDer => new CustomInterceptorAttribute("service"));
修改全局拦截器注册:
services.AddAspectCore(config =>{ config.InterceptorFactorIEs.AddServiced<CustomInterceptorAttribute>();});
作用于特定Service
或Method
的全局拦截器,下面的代码演示了作用于带有Service
后缀的类的全局拦截器:
services.AddAspectCore(config =>{ config.InterceptorFactorIEs.AddTyped<CustomInterceptorAttribute>(method => method.DeclaringType.name.EndsWith("Service"));});
使用通配符的特定全局拦截器:
services.AddAspectCore(config =>{ config.InterceptorFactorIEs.AddTyped<CustomInterceptorAttribute>(PredicateFactory.ForService("*Service"));});
在AspectCore中提供NonAspectAttribute
来使得Service
或Method
不被代理:
[NonAspect]public interface ICustomService{ voID Call();}
同时支持全局忽略配置,亦支持通配符:
services.AddAspectCore(config => { //App1命名空间下的Service不会被代理 config.NonAspectoptions.Addnamespace("App1"); //最后一级为App1的命名空间下的Service不会被代理 config.NonAspectoptions.Addnamespace("*.App1"); //ICustomService接口不会被代理 config.NonAspectoptions.AddService("ICustomService"); //后缀为Service的接口和类不会被代理 config.NonAspectoptions.AddService("*Service"); //命名为query的方法不会被代理 config.NonAspectoptions.AddMethod("query"); //后缀为query的方法不会被代理 config.NonAspectoptions.AddMethod("*query"); });
拦截器中的依赖注入。在拦截器中支持属性注入,构造器注入和服务定位器模式。
属性注入,在拦截器中拥有public get and set
权限的属性标记[AspectCore.Abstractions.FromServices]
(区别于Microsoft.AspNetCore.Mvc.FromServices
)特性,即可自动注入该属性,如:
public class CustomInterceptorAttribute : InterceptorAttribute{ [AspectCore.Abstractions.FromServices] public ILogger<CustomInterceptorAttribute> Logger { get; set; } public overrIDe Task Invoke(AspectContext context, AspectDelegate next) { Logger.Loginformation("call interceptor"); return next(context); }}
构造器注入需要使拦截器作为Service
,除全局拦截器外,仍可使用ServiceInterceptor
使拦截器从DI中激活:
public interface ICustomService{ [ServiceInterceptor(typeof(CustomInterceptorAttribute))] voID Call();}
服务定位器模式。拦截器上下文AspectContext
可以获取当前Scoped的ServiceProvIDer
:
public class CustomInterceptorAttribute : InterceptorAttribute{ public overrIDe Task Invoke(AspectContext context, AspectDelegate next) { var logger = context.ServiceProvIDer.GetService<ILogger<CustomInterceptorAttribute>>(); logger.Loginformation("call interceptor"); return next(context); }}
使用autofac
和AspectCore
。AspectCore原生支持集成autofac,我们需要安装下面两个nuget packages:
PM> Install-Package autofac.Extensions.DependencyInjectionPM> Install-Package AspectCore.Extensions.autofac
AspectCore提供RegisteraspectCore
扩展方法在autofac的Container
中注册动态代理需要的服务,并提供AsInterfacesProxy
和AsClassproxy
扩展方法启用interface和class的代理。修改ConfigureServices
方法为:
public IServiceProvIDer ConfigureServices(IServiceCollection services){ services.AddMvc(); var container = new ContainerBuilder(); container.RegisteraspectCore(); container.Populate(services); container.RegisterType<CustomService>().As<ICustomService>().InstancePerDependency().AsInterfacesProxy(); return new autofacServiceProvIDer(container.Build());}有问题反馈
如果您有任何问题,请提交 Issue 给我们。
AspectCore Project 项目地址:
正在找工作,欢迎推荐.NET/.NET Core后端开发职位,坐标上海,可私信或Email。 总结
以上是内存溢出为你收集整理的什么是AspectCore Project ?全部内容,希望文章能够帮你解决什么是AspectCore Project ?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)