Spring does not support one of the below dependency injection.?
-
Constructor Injection
-
Setter Injection
-
interface Injection
-
None
C
Correct answer
Explanation
Spring supports constructor injection (via dependencies in constructor), setter injection (via setter methods), and field injection (via annotations). Interface injection is NOT supported by Spring - it was part of early DI frameworks but Spring chose not to implement it, preferring the other three approaches.