0 votes
in Spring by

Which annotation is commonly used for autowiring in Spring?

a) @InjectBean

b) @Auto

c) @Dependency

d) @Autowired

1 Answer

0 votes
by
d) @Autowired

Explanation:

The @Autowired annotation in Spring indicates that a particular field or constructor should be auto-wired by Spring's DI facilities.
...