I have following Spring job to run after every 30 minutes. Please check my cron expression, is that correct?
\"0 0 0 * * 30\"
H
If someone is using @Sceduled this might work for you.
@Scheduled(cron = "${name-of-the-cron:0 0/30 * * * ?}")
This worked for me.