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 * * * ?");