host元素的属性autoDeploy和reloadable的区别

web.xml文件的修改会触发AutoDeploy,受host节的autoDeploy配置值的影响。
class类文件修改会触发Reload操作,受reloadable配置值的影响。
而autoDeploy和reloadable的配置在conf/server.xml中,类似如下:
<Host name="localhost" appBase="webapps" unpackWARs="true" >
<Context path="/test" docBase="c:/test" reloadable="true"/>
</host>
 
原文地址:https://www.cnblogs.com/zhjh256/p/9756133.html