用myeclipse对修改过的程序保存后,为什么不能实时反映到浏览器上,这个问题困扰我了很久,
现在有个办法对此进行修正:
现在只要设置一下 context.xml
1.找到 context.xml ,这个文件在 %catalina_home%/conf下
2.打开文件,在 <Context>标记上添加属性: antiJARLocking="true" antiResourceLocking="true"
3.保存,然后重启
修改后的context.xml如下:
<Context antiJARLocking="true" antiResourceLocking="true" >
<!-- Default set of monitored resources --><WatchedResource>WEB-INF/web.xml</WatchedResource>