In Spring, what is the process of supplying an external dependency to an object called?

  • Bean Inversion
  • Bean Registration
  • Dependency Injection
  • Dependency Wiring
The process of supplying an external dependency to an object in Spring is called "Dependency Injection." It involves injecting or providing the required dependencies to an object rather than having the object create them itself, promoting loose coupling and easier testing.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *