Does anyone know of any way to make a Bean live even after giving a redirect?
The situation looks like this: I'm developing a project where, in theory, the user logs in and the user and password he typed are saved somewhere (probably together with the bean) until he clicks LogOut.
I looked for a solution on the internet and found the JSF Flash but in flash it does not save the data forever, it loses the data after 2 or more redirects, I also tested the CDI @ConversationScoped but the bean dies when I I give redirect so I do not know how to keep this bean alive, can anyone help me?