InterviewSolution
Saved Bookmarks
| 1. |
What do you mean by Autowiring in spring? |
|
Answer» The Autowiring FEATURE enables developers to inject DEPENDENCIES in the object implicitly. Autowiring internally USES the setter or constructor INJECTION. This feature cannot be used for injecting primitive or string values, and it only WORKS with reference. |
|