Identify the two valid modes of auto wiring
-
byName
-
byFields
-
byInterface
-
byType
A,D
Correct answer
Explanation
In Spring Framework, autowiring can be done 'byName' (matches bean name to property name) or 'byType' (matches bean type to property type). These are the two standard autowiring modes. byFields and byInterface are not valid autowiring modes in Spring.