0 votes
in Spring by

Which of the following is NOT a way to configure beans in Spring?

a) XML

b) Java Annotations

c) Property files

d) Java Config classes

1 Answer

0 votes
by
c) Property files

Explanation:

Property files are generally used for external configurations and not for bean definitions. Bean configurations are typically done using XML, Java Annotations, or Java Config classes.
...