Do we have concept of page scope in spring3? Suppose user open multiple tab then if data is stored in session then in some situation things may go wrong. Imagine user will open two tab in the browser. And in both these tab he is working on same page so that he can complete his work faster. So if some data is referred from session then in that case application can reach to an error state.
So to avoid this I want to store data in page scope,so that each page data will not be mixed in session? is it directly available in spring or I need to write my own conversation logic and page scope?