Przeglądałem przykład Spring Boot dla zadań planowania (https://spring.io/guides/gs/scheduling-tasks/) i czytałem dokumentację (https://javahunter.wordpress.com/2011/05/05/cronscheduler-in-spring/) i widzę, że * i? są używane zamiennie.Różnica między * i? in Spring @Scheduled (cron = ".....")
Na przykład, linia
@Scheduled(cron = "0 15 10 ? * *")
i
@Scheduled(cron = "0 15 10 * * ?")
zrobić dokładnie to samo. Jaka jest różnica między * i?
Niestety, ale nie :(.?? To ** dokładnie ** to samo niż '*' https://stackoverflow.com/questions/30341067/difference-between-and-in-spring-scheduledcron/30789834 # 30789834 – Luchostein
Ponieważ tak jest zaimplementowane :(. Smutne, ale prawdziwe: https://stackoverflow.com/questions/30341067/difference-between-and-in-spring-scheduledcron/30341102 – Luchostein
@Luchostein to jest to samo Ale w przypadku dokumentacji jest inna – Jens