maintain state with spring between requests
问题 I am new to spring so sorry if this is a beginners question, but the manual is not clear (at least not for me) My question is: how do I share state between requests in spring? I can send data from the controller to the view by using a ModelMap, but the data in the ModelMap is not sent back to the next controller by the view. How can I do this with spring? Below is a part of my source code. In the second controller the modelMap doesn't contain the data I stored in the modelMap in the first