Currently I'm working on schedule my method. At this moment I have solution like below:
@Scheduled(cron = {cron.from.properties})
public void resetCache() {
// ...
}
And now I need to be able to change schedule with cron from properties without rebuilding war. Do you maybe know any working alternative for above solution? Thanks