#parse("sys/header.html")
查询 #if($shiro.hasPermission("sys:schedule:save"))  新增 #end #if($shiro.hasPermission("sys:schedule:update"))  修改 #end #if($shiro.hasPermission("sys:schedule:delete"))  删除 #end #if($shiro.hasPermission("sys:schedule:pause"))  暂停 #end #if($shiro.hasPermission("sys:schedule:resume"))  恢复 #end #if($shiro.hasPermission("sys:schedule:run"))  立即执行 #end #if($shiro.hasPermission("sys:schedule:log")) 日志列表 #end

{{title}}

提交 返回 重置

常用Cron表达式

0 15 10 * * ? *
每天10点15分触发
0 15 10 * * ? 2017
2017年每天10点15分触发
0 * 14 * * ?
每天下午的 2点到2点59分每分触发
0 0/5 14 * * ?
每天下午的 2点到2点59分(整点开始,每隔5分触发)
0 0/5 14,18 * * ?
每天下午的 2点到2点59分、18点到18点59分(整点开始,每隔5分触发)
0 0-5 14 * * ?
每天下午的 2点到2点05分每分触发
0 15 10 ? * 6L
每月最后一周的星期五的10点15分触发
0 15 10 ? * 6#3
每月的第三周的星期五开始触发