I got 2 parsley configurations for my 2 elements.

A.xml

<fx:Declarations>
    <!--Presenters-->
    <presenters:ScenarioDefinitionPresenter id="scenarioDefinitionPresenter"/>

    <!--Manager-->
    <managers:ScenarioDefinitionManager/>

    <!--service-->      
    <services:ScenarioDefinitionServiceImpl id="scenarioDefinitionService" />
</fx:Declarations>

B.xml

<fx:Declarations>
    <!--Presenters-->
    <presenters:TemplatePresenter/>
    <presenters:ScenarioDefinitionPresenter id="scenarioDefinitionPresenter"/>
</fx:Declarations>

My question is how to make that the "scenarioDefinitionPresenter" in both config share the same instance?

Thanks!

link|improve this question

79% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Well, that depends on how you 'architected' your Parsley configs. In Parsley, if you have a 'root' config with that presenter, it will be shared in all child configs as well (unless you specify otherwise).

From the look of it, it seems that you have 2 siblings (2 children under root) that have different contexts. My suggestion is that you make a config in the main application file and add your presenter there. From here, you don't need to specify the presenter in the child contexts, only need to set the injections where needed and Parsley does the rest.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.