Tomcat设置热部署

conf文件下的context.xml和server.xml这两个文件

context.xml中:

<Context reloadable="true">

server.xml中 :

<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true">  

其中autoDeploy=”true”就是热部署

你可能感兴趣的:(Tomcat设置热部署)