Redeploy alternatives to JRebel [closed]

Take a look at DCEVM, it’s a modification of the HotSpot VM that allows unlimited class redefinitions at runtime. You can add/remove fields and methods and change the super types of a class at runtime. The binaries available on the original site are limited to Java 6u25 and to early versions of Java 7. The … Read more

JSF and automatic reload of xhtml files

JRebel handles /WebContent folder changes. The problem is that Facelets do caching and do not reread changed files. To force reread specify the following parameters in web.xml. JSF 2 (Facelets 2.x): <!– 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> … Read more