I need two cron jobs and I am really not sure if I am doing right. One con job should run every 01.01.xxx at 01:00 o'clock and the other should run every night at 01:00.
@Scheduled(cron = "0 0 01 01 01 ?") // every year 01.01 at 01:00 o'clock
@Scheduled(cron = "0 0 01 * * *") // very day at 01:00 o'clock
Are these the correct expression?