Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm getting these messages:

[#|2010-07-30T11:28:32.723+0000|WARNING|glassfish3.0.1|javax.faces|_ThreadID=37;_ThreadName=Thread-1;|Setting non-serializable attribute value into ViewMap: (key: MyBackingBean, value class: foo.bar.org.jsf.MyBackingBean)|#]

Do these mean that my JSF backing beans should implement Serializable? Or are they refering to some other problem?

share|improve this question

1 Answer

up vote 25 down vote accepted

Yes, you understood it correctly. The view is basically stored in the session scope. The session scope is in JSF backed by the Servlet's HttpSession. All session attributes are supposed to implement Serializable, this because the average servletcontainer may persist session data to harddisk to be able to survive heavy load and/or reviving sessions during server restart.

Storing raw Java objects on harddisk is only possible if the respective class implements Serializable. Then ObjectOutputStream can be used to write them to harddisk and ObjectInputStream to read them from harddisk. The servletcontainer manages this all transparently, you actually don't need to worry about it. JSF is just giving a warning so that you understand the risks.

share|improve this answer
My beans are mostly view scoped. Are they also persisted when the session is persisted? – Gabor Kulcsar Jul 30 '10 at 15:05
As said, the view is stored in the session. – BalusC Jul 30 '10 at 15:06
Sorry, re-read your answer again ;-) – Gabor Kulcsar Jul 30 '10 at 15:06
Thanks for the clarification! – Gabor Kulcsar Jul 30 '10 at 15:06
BalusC always rescue you when its a JEE question thanks!!! – Necronet Jan 27 '11 at 20:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.