Quartz Scheduler - 未运行任务
我正在使用 Quartz API 来安排任务。我尝试安排 notepad.exe 并在日志中看到以下行 -
org.quartz.jobs.NativeJob runNativeCommand 即将运行cmd.exe /C c:/WINDOWS/notepad.exe ...
但记事本没有出现。任何 exe 或批处理文件都存在同样的问题。 我还在任务管理器中看到 notepad.exe 作为正在运行的进程。
代码:-
JobDataMap map = new JobDataMap();
map.put(NativeJob.PROP_COMMAND, "c:/WINDOWS/notepad.exe");
I am working on scheduling the tasks using Quartz API. I tried scheduling notepad.exe and in the logs, I see the following line -
org.quartz.jobs.NativeJob runNativeCommand About to runcmd.exe /C c:/WINDOWS/notepad.exe ...
But the notepad is not coming up. Same is the issue with any exe or batch file.
I also see the notepad.exe as a running process in Task Manager.
Code:-
JobDataMap map = new JobDataMap();
map.put(NativeJob.PROP_COMMAND, "c:/WINDOWS/notepad.exe");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论