2.7.5
Код: Выделить всё
@Scheduled(cron = "0 0 0 * * *")
public void generateEligibilityFileReportForYesterday() {
if(isMasterNode()) {
LocalDate now = LocalDate.now();
try {
sendEmailForProcessedEligibilityFiles(now.minusDays(1), now.minusDays(1));
} catch (IOException | EmailServiceException ex) {
log.error("An exception occurred while sending processed eligibility files email", ex);
}
}
}

Подробнее здесь: https://stackoverflow.com/questions/791 ... iple-times
Мобильная версия