I've this unique scenario :
Say I've some jsp file (a.jsp) and tomcat is serving this page. Suppose i now delete the file a.jsp and add again a.jsp (with little modifications) the tomcat is not taking the newly modified file. It says file is missing even though the file is there at exactly the same location. Otherwise i've to refresh the project in eclipse for the changes to take effect.
I tried adding the following block in tomcat's web.xml but it didn't help much:
<init-param>
<param-name>checkInterval</param-name>
<param-value>1</param-value>
</init-param>
I'd like to know if there is any solution where i don't need to refresh the project and the changes are taken in seamlessly.
The issue here is if i edit the same jsp (it still works fine -- the changes take in effect) but if i delete the jsp file and then add the same jsp file (at the same location) with little modifications the changes does not take in effect