What is the best way to pass an object to another view in JSF?
I have two pages one query and another with the data to edit an object, the query page has a list of objects and each object has the edit button that causes it to redirect to the editing page, I can not send the object and load the edit page. My Bean I'm using ViewScoped.
In other languages it is possible to pass through POST but in java it is a bit complicated I can not adapt. If possible, put a snippet of code.