I am new to spring web flow. I have an list and I want an expression to be evaluated as many time as the size of the list. Sample code is-
<evaluate expression="myController.save(itemController.selectedList)" result="flowScope.item"/>
Here selectedList is an list of items. I want it to be something like-
for(Item item: selectedList) {
<evaluate expression="myController.save(item)" result="flowScope.item"/>
}
Here I want iterating through the list and evaluation the expression with each iteration. Is this possible to do so in xml file?