I know I can inject the value from properties file with the following syntax:
@Scheduled(fixedRate=${myRate})
public void getSchedule(){
System.out.println("in scheduled job");
}
However I can't guess how to accomplish the same if the configuration is in YAML file.
Thanks in advance,