I have cron job running daily at 8 am in my spring boot
java micro service like below
app.scheduler.memberPlanExecution-DailyRun: '0 0 8 * * *'
Cron expression generator - Quartz
Use this online user interface to generate cron expressions based on the Quartz engine.
Seconds
Minutes
Hours
Day
Month
Year
Every second
Every 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 second(s) starting at second 000102030405060708091011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
Specific second (choose one or many) 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
I like to run at 8 AM, 1 PM, 4 PM, 6 PM daily. Instead of one tiome at 8 three more times during the day.
How to change my cron expression something like below?
app.scheduler.memberPlanExecution-DailyRun: '0 0 8/13/16/18 * * *'
or like below
app.scheduler.memberPlanExecution-DailyRun: '0 0 8^13^16^18 * * *'
or something else?
Please advise