cencenhai 发表于 2017-1-21 11:42:32

maven tomcat热部署

项目部署tomcat配置 conf/server.xml 如下
<Host name="localhost"appBase="webapps"
            unpackWARs="true" autoDeploy="true"
            xmlValidation="false" xmlNamespaceAware="false">

   <Context path="" docBase="D:\workspace\WJGL\WebRoot"      reloadable="true" caseSensitive="false" debug="0">
</Context>
</Host>

docBase为部署项目
页: [1]
查看完整版本: maven tomcat热部署