I had some problems with hot-reloading XHTML files using JRebel, Spring, JSF Mojarra 2.0.3 and WebLogic 10.3.

JRebel reloads regular Java classes and js/css files under /WebContent successfully, but not JSF's .xhtml files. A full republish was necessary to get xhtml files updated on the server.

By trial and error I finally got it to work by adding some facelets parameters to web.xml and creating a custom ResourceResolver as described in this blog post.

However, I wonder WHY this works, and more specifically:

  • Why is a custom ResourceResolver needed?
  • Isn't JRebel supposed to handle this by monitoring /WebContent where the xhtml files reside?
  • I'm guessing it has something to do with Facelets/JSF compiling xhtml to servlets(?) via FacesServlet which JRebel is unable to detect?
link|improve this question

77% accept rate
feedback

1 Answer

JRebel handles /WebContent folder changes.

The problem is that Facelets do caching and do not reread changed files. To force reread specify the following in web.xml:

<!-- Time in seconds that facelets should be checked for changes since last request. A value of -1 disables refresh checking. -->
<context-param>
    <param-name>javax.faces.FACELETS_REFRESH_PERIOD</param-name>
    <param-value>0</param-value>
</context-param>

<!-- Set the project stage to "Development", "UnitTest", "SystemTest", or "Production". -->
<!-- An optional parameter that makes troubleshooting errors much easier. -->
<!-- You should remove this context parameter before deploying to production! -->
<context-param>
    <param-name>javax.faces.PROJECT_STAGE</param-name>
    <param-value>Development</param-value>
</context-param>

That custom resource resolver is not needed in your case. That resource resolver is just a tricky way to get xhtml files from custom file system folder. In your case JRebel does that (and even more).

link|improve this answer
I believe that JRebel already implicitly does that. At least, here it does. Note that your context params are Facelets 1.x specific and that OP is using Facelets 2.x. – BalusC Sep 22 '11 at 14:01
@Balusc Thanks for reply, answer updated to be Facelets 2.x specific. – Andrey Sep 22 '11 at 14:31
Setting javax.faces.FACELETS_REFRESH_PERIOD to 0 and javax.faces.PROJECT_STAGE to Development does not seem to trigger updated templates with JRebel on JSF 2.0.4 and WebLogic 10.3. – uggedal Sep 27 '11 at 11:06
@uggedal OP has noted that 'finally got it to work by adding some facelets parameters to web.xml and creating a custom ResourceResolver '. I don't know whether it works for him without custom resource resolver. – Andrey Sep 27 '11 at 12:13
feedback

Your Answer

 
or
required, but never shown

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