使用tomcat 7的菜鸟,如何实现此设置:http://tomcat.apache.org/tomcat-7.0-doc/config/host.html#Common_Attributes
尝试将unpackWARs设置为true,这样我就不必手动解包战争来部署它,但不知道在哪里这样做。
答案 0 :(得分:2)
此设置可在Tomcat 7配置目录下的 server.xml 中找到。例如,在Ubuntu上,这是 /etc/tomcat7/server.xml ,该设置是<Host>
元素的一部分:
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">