标签:false sni 生效 track dep ati pre pac roo
项目的实际使用中常常须要将当前项目设为tomcat的默认项目,而不是进入到tomcat的页面,有几种方法能够实现,注意另外一种、第三种情况须要先删除webapps下的ROOT文件夹,否则会失败。
一、将自己的项目改名为ROOT注意项目名称要大写
假设改完后没生效。建议清空tomcat中的work文件夹(缓存)
二、改动配置文件server.xml
添加<Context path="" docBase="Cluster" debug="0" reloadable="true"/>节点,当中docBase为webapps中的项目。注意,<Context>一定要加在<Host>节点中。样例例如以下:
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> <Context path="" docBase="Cluster" debug="0" reloadable="true"/>
三、改动配置文件server.xml
添加<Context path="" docBase="E:\apps\Cluster" debug="0" reloadable="true"/>节点,当中docBase为须要设为默认项目的绝对路径。注意,<Context>一定要加在<Host>节点中。样例例如以下:
<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true" xmlValidation="false" xmlNamespaceAware="false"> <Context path="" docBase="E:\apps\Cluster" debug="0" reloadable="true"/>
标签:false sni 生效 track dep ati pre pac roo
原文地址:http://www.cnblogs.com/gccbuaa/p/7357026.html