1
我想在cron中使用java表達式來進行Spring Boot中的調度。在cron中使用java pojo/enum的Spring Boot Scheduler
@Scheduled(cron = "${FileConfig.FileEnum.getScheduleTime()}")
public void scheduleFetchFiles() {
...//method body
}
是否有直接的方式來使用cron中的pojo對象或枚舉值?