facebook

[Troubleshoot] My JSF changes are not deployed

  1. MyEclipse IDE
  2.  > 
  3. FAQ – Development
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #241863 Reply

    Riyad Kalla
    Member

    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 8 years, 8 months ago by support-tony. Reason: Minor edits
Viewing 1 post (of 1 total)
Reply To: [Troubleshoot] My JSF changes are not deployed

This topic is marked as closed to new replies, however your posting capabilities still allow you to do so.

You must be logged in to post in the forum log in