Multiple choice technology architecture

Spring does not support one of the below dependency injection.?

  1. Constructor Injection

  2. Setter Injection

  3. interface Injection

  4. None

Reveal answer Fill a bubble to check yourself
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.