0 votes
in Spring by

If a bean has multiple qualifying dependencies, which annotation can help in specifying the right one?

a) @Select

b) @Choose

c) @Qualifier

d) @Pick

1 Answer

0 votes
by
c) @Qualifier

Explanation:

The @Qualifier annotation is used alongside @Autowired to specify which particular bean should be injected when there are multiple candidates.
...