Concept Flow - @Service annotation
Write class with @Service
Spring scans classes
Detect @Service annotation
Create service bean instance
Register bean in Spring context
Inject service where needed
Use service methods in app
Spring scans your code, finds classes marked with @Service, creates and registers them as beans, so you can inject and use them easily.