Concept Flow - @EnableAsync annotation
Start Application
Spring Boot Loads Context
Detect @EnableAsync
Create Async Executor
Scan for @Async Methods
Run @Async Methods in Separate Threads
Main Thread Continues Without Waiting
Async Task Completes Independently
This flow shows how Spring Boot detects @EnableAsync, sets up async support, and runs @Async methods on separate threads so the main thread doesn't wait.