Please give me hints if it is possible?
org.springframework.webflow.execution.RequestConte xt add as <property> in Ajax Controller bean to access the flowScope?
e.g. SearchController class inherits the org.springframework.web.servlet.mvc.SimpleFormCont roller
the above statement, gives me an error because the RequestContext is an Interface.Code:<bean name="searchAjaxController" class="com.company.controller.SearchController"> <property name="propertyEditorRegistrars"> <list> <ref bean="customEditorRegistrar"/> </list> </property> <property name="searchService" ref="searchService" /> <property name="requestContext"> <bean class="org.springframework.webflow.execution.RequestContext"/> </property> </bean>
please guide me on how to access the flowScope inside the Ajax Controller.


Reply With Quote

