如何以独立模式启动 Quartz?
根据 其功能列表,“Quartz 可以作为独立程序运行(在它自己的 Java 虚拟机中),通过 RMI 使用”。
但是,我找不到任何如何以独立模式启动它的文档。
“java -jarquartz.jar”不执行任何操作(在其 mainfest 中甚至没有指定主类)。
发行版中的所有示例都使用 Quartz 作为嵌入式库。
那么这是如何运作的呢?
According to its feature list "Quartz can run as a stand-alone program (within its own Java Virtual Machine), to be used via RMI".
I could not find any documentation how to start it in stand-alone mode, however.
"java -jar quartz.jar" does not do anything (there is not even a Main-Class specified in its mainfest).
All the examples in the distribution use Quartz as an embedded library.
So how does this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的类(例如,具有启动 RMI 服务器的
main()
方法的类)是 org.quartz.impl.QuartzServer。不过,说实话,我从来没有完全理解以这种方式使用它的好处。
The class you're looking for (e.g. the one with
main()
method starting the RMI server) is org.quartz.impl.QuartzServer.I'll be honest, though, I've never quite understood the benefit of using it this way.