In spring MVC, when a request comes from view (ex: jsp), it will hit one of the controller method. Data to be passed on to the view from the code will be stored into the ModelMap object. What is the scope of this object? Like where exactly the data getting stored either in request or session or context?
and how to change the scope? For example if its getting stored in request, how to make it upto session?