Answers:
您添加的当前cron表达式<cron_expr>0 4 * * *</cron_expr>
将每天在04:00 AM运行
next at 2017-03-23 04:00:00
then at 2017-03-24 04:00:00
then at 2017-03-25 04:00:00
then at 2017-03-26 04:00:00
then at 2017-03-27 04:00:00
如果您希望每30分钟一次,则可以将表达式添加为
<cron_expr>*/30 * * * *</cron_expr>
next at 2017-03-22 14:30:00
then at 2017-03-22 15:00:00
then at 2017-03-22 15:30:00
then at 2017-03-22 16:00:00
then at 2017-03-22 16:30:00
您可以从此参考站点测试表达