ASP.Net MVC 3、Ninject 和 Quartz.Net - 如何?
我现在使用 Ninject 2.2.1.4 和我的 MVC3,我成功配置 Ninject 运行它,但我不知道如何使 Ninject 在我的 MVC3 中运行 Quartz.Net 有人可以帮忙吗?
I am now using Ninject 2.2.1.4, with my MVC3, i'm success to config Ninject run with it, but i don't know how to make Ninject run with Quartz.Net in my MVC3
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个使用 Ninject
和 QuarzSchedulerProvider
和 SchedulerFactoryProvider
的 JobFactory并配置
如果您需要一些 ISchedulerListener 例如用于日志记录也将它们绑定在这里。
在您想要添加作业的地方注入 IScheduler 的实例,并且很可能您也必须将实例的属性注入到 global.asax 中。但请注意,我还没有在 MVC 上下文中使用 Quarz,因为我认为计划任务不属于 Web 应用程序,而是属于在同一服务器上运行的服务。
Create a JobFactory that uses Ninject
and a QuarzSchedulerProvider
and a SchedulerFactoryProvider
and configure
If you need some ISchedulerListener e.g. for logging bind them here too.
Inject an instance of IScheduler where you want to add Jobs and most likely you have to do property injection of an instance into global.asax too. But note I havn't used Quarz in MVC context yet as I think Scheduled Tasks do not belong into a Web App but rather into a service running on the same server.