spring-context

Spring: Is default-init-method inherited from parent application contexts to child contexts?

<beans default-init-method="init"> //... </beans> If I define default-init-method in the parent application context will it be inherited by the child contexts such as a web application context? Or do I need to define default-init-method in each context XML? ...