Lets say im in PageA and want to pass a Person Object with two Strings properties(name and lastname) to PageB. What is the recommended way to proceed?
A) Set 2 PageParameters values, one for each string. B) Pass the entire person via pageparameter (if posible.)
Sorry guys Im in a project for university and time forces me to ask as fast as I can, so I forgot to write the background.
This is it:
In pageA I have a Person Object, lets say I wat to edit that person in PageB, that is the page for edit persons. I I already have the Object I dont want to query it again just for fun lol. Im using JPA and I would like to edit the object I already READ and then merge it to the DB using Entity Manager.