tags:

views:

22

answers:

1

Hi,

Is it possible to have two IoC containers in one JVM ? If so, is there a way to use objects created in one container in other using "@Configurable" ?

-DKC

+3  A: 

There can be multiple contexts. They can be totally separate, and they can have a parent-child relation. In the latter case, they behave as if they are one. In the former - no, you can't.

Bozho