vote up 0 vote down star

Hi all,

I've a Spring MVC controller mapped to the url /blah/abc/index that is defined like

@RequestMapping(method = RequestMethod.GET)
public void index(MyObj myObj, Model model) {...}

Now, MyObj contains int x, int y params.
If the req that comes in is like /blah/abc/index?x=1&y=2 MyObj variables are automatically populated.

I want to achieve the same with WebFlow. I've a view /blah/abc/list and from here I want to be able to call the springMVC index method (with a MyObj populated with the req params x and y /blah/abc/list?x=1&y=2 )

Something like

<view-state id="list" view="blah/abc/list">
  <on-render>
    <evaluate expression="abcController.index(myObj,??model??)" result="flowScope.abcList" /> 
  </on-render>
  <transition on="delete" to="deleteAbc" />
  <transition on="create" to="createAbc" />
</view-state>

Do you know how can I achieve this?

Thank you

flag

1 Answer

vote up 0 vote down

Have you tried webflow's model binding?

In the transition that leads to the list state, you can bind your myObj model to the view. Something like this:

<view-state id="pre-list" view="blah/abc/pre-list" model="myObj">
  <binder>
        <binding property="x" />
        <binding property="y" />
  </binder>
  <transition on="submit" to="list" />
</view-state>

<view-state id="list" view="blah/abc/list">
  <on-render>
    <evaluate expression="abcController.index(myObj,??model??)" result="flowScope.abcList" /> 
  </on-render>
  <transition on="delete" to="deleteAbc" />
  <transition on="create" to="createAbc" />
</view-state>

This is assuming you have a pre-list view which supplies x and y form params which webflow can use for the model binding. This also assumes that myObj is available in some scope like flowScope, or is declared as a flow variable.

link|flag

Your Answer

Get an OpenID
or

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