I have a @ConfigurationProperties class with Duration fields. I'd like to reference one of these fields when declaring an annotation like @Scheduled(fixedRateString = "${my-prop.rate}").
To do this I have to specify the value for the property using the java.time.Duration syntax. It would be nice to be able to use the flexible values introduced in #11078.