Do objects stored in a HTTP Session need to be serializable? Or can it store any object?
Question:
Do objects stored in a HTTP Session need to be serializable? Or can it store any object?
Question:Do objects stored in a HTTP Session need to be serializable? Or can it store any object?
Answer
It's important to make sure that all objects placed in the session can be serialized if you are building a distributed applicatoin. If you implement Serializable in your code now, you won't have to go back and do it later.
By:Jalees Date:
Do objects stored in a HTTP Session need to be serializable? Or can it store any object?