I have a scenario to pass values from one request to another subsequent rquest. (i.e) I will call 'Controller1' on the first request and take the request parameters or query string and should send them to 'Controller2' as 'new request'.
Strictly I should not use any of the following approaches.
- should not use sessions.
- should not use cookies.
- should not use requestdispatcher.forward(--).
- without FlashAttributes (which internally uses session, which won't work in 'Clustered environmnets').
- should not expose the ModelAttribues in request parameters in case of redirection (i.e) I should not even expose them as request parameters using spring RedirectView.
please let me know, if we have any alternative approch. Thanks in advance.