Suppose I've got application contexts hierarchy: A
(parent), B
(extends A), C
(extends A).
Suppose now I write something like @Autowired private MyBean myBean
Question: WHERE Spring will look for myBean
? In other words in WHICH CONTEXT it'll look? Suppose bean is present in all 3 contexts..