up vote 3 down vote favorite
7
share [g+] share [fb]

What is the best way to reduce the size of the viewstate hidden field in JSF? I have noticed that my view state is approximately 40k this goes down to the client and back to the server on every request and response espically coming to the server this is a significant slowdown for the user.

My Environment JSF 1.2, MyFaces, Tomcat, Tomahawk, RichFaces

link|improve this question

77% accept rate
feedback

4 Answers

up vote 6 down vote accepted

Have you tried setting the state saving to server? This should only send an id to the client, and keep the full state on the server. Simply add the following to the file web.xml :

 <context-param>
  <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
  <param-value>server</param-value>
 </context-param>
link|improve this answer
Please be aware that using server state saving increases the server memory consumption a lot! If you have many users (thousands) this can be a bottleneck very fast. – Marcel Sep 12 '09 at 11:21
I have specified both:<context-param> <param-name>javax.faces.STATE_SAVING_METHOD</param-name> <param-value>server</param-value> </context-param> <context-param> <param-name>com.sun.faces.enableViewStateIdRenderingD</param-name> <param-value>FALSE</param-value> </context-param> Still not helping. I'm using Primefaces. – Damian Nov 9 '11 at 19:29
feedback

If you are using MyFaces you can try this setting to compress the viewstate before sending to the client.

<context-param> <param-name>org.apache.myfaces.COMPRESS_STATE_IN_CLIENT</param-name> <param-value>true</param-value> </context-param>

link|improve this answer
feedback

Facelets saves less state per component than the JSF default JSP presentation.

link|improve this answer
feedback

One option is to completely save the view state on client side but you may face some problem such as not being able to Serialize the object. You may want to try using different compression algorithm/utility based on your requirement but since the browser will already use the GZip by default I am not sure how much you can gain.

link|improve this answer
My biggest concern is the size of the post from the client to the server as many users have much less upstream then downstream. No compression takes place when the client sends a request – David Waters Sep 24 '08 at 9:41
feedback

Your Answer

 
or
required, but never shown

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