Springの@Scheduled
cron
コンフィギュレーションのpropertyClassからゲッター(または変数)を呼び出す方法はありますか?以下はコンパイルされません:スプリングブート@スケジューリングされたcron
@Scheduled(cron = propertyClass.getCronProperty())
または@Scheduled(cron = variable)
を私が直接施設をつかん避けたい:/src/main/resources/application.propertiesで
@Scheduled(cron = "${cron.scheduling}")
この値を取得するBeanを作成したら、そのBeanをcronクラスにオートワイヤリングするのはどうですか? – mugua
propertyClassはBeanか、静的メソッドを含むクラスだけですか? –
@KenBekov a bean。 – ltalhouarne