I am aware of passing data between jsp in spring web flow.
Is it possible to transfer data between html pages driven by spring web flow. I don't want to use the HTML5 local storage capabilities.
Example:
Page 1: Search box for an employee id.
Page 2: Search result for the employee details.
Two ways that I could think:
Get the employee details in page 1 by ajax and pass the result to the page two.
Pass the employee id to page 2 and get the result by ajax in onload.
In both case I need to pass any variable/data. I am confused in doing this.
Is there anything in the Spring webflow using which I could do this?
Thanks in advance,
Easwar