摘要: AOP面向切面的编程使用Interceptor内置的容器进行属性注入 1. NuGet程序包管理添加Castle Core,主要用于拦截器的使用,Startup ConfigureServices中添加如下内容 public void ConfigureServices(IServiceCollec 阅读全文
posted @ 2021-01-12 14:40 龙骑科技 阅读(296) 评论(0) 推荐(0)
摘要: 使用IOC内置的容器进行属性注入,新建Asp Net Core Web项目,添加以下内容1. 自定义特性,标记需要控制器Controoler中依赖注入的属性标记和对应服务接口 using System; namespace WebAppTest.CustomAttrributes { /// <su 阅读全文
posted @ 2021-01-12 14:27 龙骑科技 阅读(199) 评论(0) 推荐(0)