Hello everybody,
first - many thanks for the really excellent job on MVC and WebFlow (and of course the other Spring parts ...)
I do have a serious problem with MVC/WebFlow integration. I was searching around a while, but I didn't find a solution. Here goes the brief problem description.
I do have a SimpleFormController, which prepares a FormBackingObject with some lists for the associated view (tiles, jsp, jstl)
From that view, I do start several flows - it's a kind of an navigational index page.Code:<bean name="/hotel.htm" class="HotelController"> <property name="hotelService" ref="hotelService"/> <property name="authenticationService" ref="authenticationService"/> </bean>
After finishing the flows, I want to return to the index.page, but with the given view-attribute of the end-state, only the JSP gets rendered, missing the FormBackingObject!
any help is really appreciated!Code:<start-state idref="displayList"/> <view-state id="displayList" view="style"> <entry-actions> <action bean="styleListAction" method="prepareList"/> </entry-actions> <transition on="ok" to="finish"/> </view-state> <end-state id="finish" view="hotel"/>
Thx in advance & kind regards from sunny Vienna


)
Reply With Quote
