Lets say I have a @ViewScoped Bean behind my current page A. Now the user navigates to page B via a normal get request, lets say to www.google.com. When the user clicks the back button of the browser, I would like to restore the @ViewScope of the previous page, so that it appears exactly as it was left. Is that possible to achieve somehow?
I dont want to make my page A @SessionScoped so that the backing beans do not disturb each others state when opened in two browser tabs.