Prevent Stage autowiring on Modules
Is there a way I can prevent the autowiring of stage components beyond a certain scope? I have a huge application that loads a ton of Modules and many of the classes within the modules are not compiled in the main application, saving filesize.
When I use this with a FlexXMLApplicationContext, the context does a great job of autowiring things on the stage in my main application, but starts throwing errors whenever I load a module, since it is trying to autowire components which do not have a definition in the main ApplicationDomain. What can I do to work around this?