面向方面的示例项目
我正在寻找以 AOP 方式设计并大量使用拦截器的 ASP.NET MVC 项目示例。有没有好的样品?
I am looking ASP.NET MVC project samples which is designed in AOP fashion and use heavily interceptors. Are there any good samples ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
呃……他们每一个人?
MVC 有大量 AOP 风格的钩子。
当您开始了解操作过滤器和操作调用程序时,您根本不需要任何类型的 AOP 库。
Uh... every one of them?
MVC has tons of AOP style hooks.
When you strart understanding action filters and action invokers you don't need any sort of AOP libraries at all.
我使用 MS Unity + 策略注入:请参阅 Dino Esposito 在 MSDN_Magazine1 中撰写的三篇文章中的详细描述 - MSDN_Magazine2 - MSDN_Magazine3。
我使用方面进行安全检查和存储库缓存。
PS 据我所知,每个现代 IoC 容器都支持 AOP,如果您使用一个容器,您可以检查它的 AOP 功能。
I using MS Unity + Policy injection: see good descriptions in three articles by Dino Esposito in MSDN_Magazine1 - MSDN_Magazine2 - MSDN_Magazine3.
I use aspects for security check and caching of repository.
PS As far as I known every modern IoC-container supports AOP and if you use one yet you could check its aop-abilities.