Concept Flow - Scheduled tasks with @Scheduled
Application starts
Spring scans for @Scheduled
Schedule task setup
Wait for trigger time
Run scheduled method
Task completes
Wait for next trigger
↩Loop back to Run scheduled method
Spring Boot starts, finds methods marked with @Scheduled, sets timers, and runs those methods repeatedly at set times.