Although JRebel can reload Java class changes in my project, it can not reload JSF changes. When I change a JSF file I can not see any logs etc. Here is my rebel.xml:
<classpath>
<dir name="${projectDir}/classes">
</dir>
</classpath>
<web>
<link target="/WEB-INF">
<dir name="${projectDir}/war/conf">
</dir>
</link>
</web>
All JSF files are in ${projectDir}/war/. I use JBoss and IntelliJ IDEA. In the project, Ant creates an ear file and deploys it to JBoss.
How can I use JRebel to reload JSF files? Should web tag in rebel.xml point JSF files or compiled XHTML?