Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 IBM websphere v 7.0。我想使用 cron 作业来记录日志。有没有办法在 Websphere 中使用 cron 作业?
WebSphere Application Server (WAS) v7.0 包含一个调度程序(WAS 控制台 > 资源 > 调度程序)。要实现类似日历的 CRON,请在 TaskInfo 对象上设置 UserCalendar,例如:
taskInfo.setUserCalendar(null, "CRON"); taskInfo.setStartTimeInterval("5 * * * ?");