Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Spring Boot @Scheduled cron

Is there a way to call a getter (or even a variable) from a propertyClass in Spring's @Scheduled cron configuration? The following doesn't compile:

@Scheduled(cron = propertyClass.getCronProperty()) or @Scheduled(cron = variable)

I would like to avoid grabbing the property directly:

@Scheduled(cron = "${cron.scheduling}")
like image 226
ltalhouarne Avatar asked Mar 24 '16 16:03

ltalhouarne


2 Answers

If you don't want to retrieve the cron expression from a property file you can do it programatically as it follows:

// Constructor
public YourClass(){
   Properties props = System.getProperties();
   props.put("cron.scheduling", "0 30 9 * * ?");
}

That allows you to use your code whitout any changes:

@Scheduled(cron = "${cron.scheduling}")
like image 179
J. Saorin Avatar answered Sep 16 '22 19:09

J. Saorin


Short answer - it's not possible out of the box.

The value passed as the "cron expression" in the @Scheduled annotation is processed in ScheduledAnnotationBeanPostProcessor class using an instance of the StringValueResolver interface.

StringValueResolver has 3 implementations out of the box - for Placeholder (e.g. ${}), for Embedded values and for Static Strings - none of which can achieve what you're looking for.

If you have to avoid at all costs using the properties placeholder in the annotation, get rid of the annotation and construct everything programmatically. You can register tasks using ScheduledTaskRegistrar, which is what the @Scheduled annotation actually does.

I will suggest to use whatever is the simplest solution that works and passes the tests.

like image 29
hovanessyan Avatar answered Sep 16 '22 19:09

hovanessyan