Issue
The following cron expression :
<cron-expression>0 0 6 1 1/1 ? *</cron-expression>
will run 06:00 AM on the 1-st day every month. But how to set this cron expression to run on the 1st day, and on the 16th day of every month?
Solution
This works
<cron-expression>0 0 6 1,16 1/1 ? *</cron-expression>
Answered By - Noxious Reptile