Quartz documentation gives an example for running a cron job on the last day of every month, like this:
0 15 10 L * ?
Fire at 10:15am on the last day of every month
However, I'd like to run a cron job on the 1st AND Last day of the month. I would expect the cron would look somthing like this:
0 15 10 1,L * ?
But this syntax is not valid by quartz.
I couldn't find any proper/similar example in their tutorial. Any suggestions?
L,1
instead of1,L
? – Pablo Lozano