When to use Serializable backing bean in JSF?

when to use JSF Serializable bean support? are there any factors for serialization such as View Scope, Session Scope, Application Scope or anything else that requires a bean serialization.

+5
source share
1 answer

I would say that session beans have the right to serialize, because the servlet container tries to serialize everything in the session if it (the container) restarts.

+4
source

All Articles