摘要:
event 使用ApplicationEvent和ApplicationListener // event public class OrderProductEvent extends ApplicationEvent { public OrderProductEvent(Object source 阅读全文
摘要:
host service public class DemoService01 { public int Add(int a, int b) { return a + b; } } // 由于Host service是单例的,所以无法使用IOC注入非单例服务 // 需要使用IServiceScope 阅读全文
摘要:
用到的package <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.2" /> 定义jwt options public class JWTOptions { public 阅读全文