Results 1 to 4 of 4

Thread: FlowExecution Repository in Spring web Flow 2.3

  1. #1
    Join Date
    Mar 2010
    Location
    USA
    Posts
    119

    Default FlowExecution Repository in Spring web Flow 2.3

    Am wondering whether Spring web flow 2.3 supports the simple flow execution repository if at all? Cos, am not able to get that Single Key flow Execution repository configured.
    Code:
    <webflow:flow-executor id="flowExecutor">
    	<webflow:flow-execution-repository ref= "repositoryFactory"/>
    	</webflow:flow-executor>
    There is no ref attribute available for the second line above. And type = simple does not seem to be available too...what should I do - please help...

    Am i missing anything? Is it that we have continuation flow execution repository only in later versions?

  2. #2
    Join Date
    Aug 2011
    Location
    Mexico City / Atlanta GA
    Posts
    30

    Default

    Hi, flow execution repositories types are not longer supported in webflow 2.3 the reason is unknown at least for me, you can have a look to my post http://forum.springsource.org/showth...ted-in-SWF-2-3 . What you can do is to write your custom FlowExcecution or easier than that a custom ConversationManager, depends on your needs.

  3. #3
    Join Date
    Mar 2010
    Location
    USA
    Posts
    119

    Default

    Thanks marcovmx. I remember having read that the ClientcontinuationFlowExecutionRepository is no longer supported in 2.3. But I dont see anything anywhere (either online or in the spring SWF documentation) stating that the Simple or SingleKeyFlowExecutionRepositories are no longer supported...this is wierd..or I should be missing something...!!! Even spring web flow version 2 books state that they exist (though I have not seen Web flow version 2.3 books -- :-()

    Thanks a lot for your response..As suggested by you, I shall go ahead with customized implementations.

  4. #4
    Join Date
    Aug 2006
    Location
    Brooklyn
    Posts
    556

    Default

    I think you're looking for something like this:

    Code:
    <webflow:flow-executor id="flowExecutor" flow-registry="flowRegistry">
        <webflow:flow-execution-repository max-executions="1" max-execution-snapshots="1" />
    </webflow:flow-executor>]]>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •