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
