We using JRebel and had a problem with jsps. Changes we made in a jsp file have not been hotdeployed.
CC does some internal caching and prevents JRebel to reload the jsp file.
If you disable the cache the changes at the jsp file are hotdeployed after we reload the web application (not restart the server).
To disable the caching (hint from Björn Müller)
1. Call ROWINCLUDEComponent.clearLayoutBuffer()
2. use an URL param "cc_clearLayoutBuffer=true" e.g. /demos/faces/hallo.jsp?cc_clearLayoutBuffer=true
If you are call you app per index.html you can add the param there
Code:
<param name='page' value='faces/jsp/surroundingpage.jsp?cc_clearLayoutBuffer=true'>
Regards
Daniel