Many people have run into problems with refreshing their JSP pages that use JavaServer Faces and not seeing any changes in their browser and think it is related to MyEclipse not deploying their changes. You need to make sure you do two things in order to see your changes right away. First, make sure you are using an exploded deployment; second, be sure to add the following to your web.xml file to be sure JavaServer Faces stores it’s state information on the Client:
<context-param>
<param-name>javax.faces.STATE_SAVING_METHOD</param-name>
<param-value>client</param-value>
</context-param>
If you are using server state persistence you can run into the problem where your state doesn’t seem to be updating with changes to your site. This tip was provided by our user jfgeiger.
-
This topic was modified 9 years, 4 months ago by support-tony. Reason: Minor edits