一、添加Host节点,name就是需要绑定的域名,多个域名用<Alias></Alias>
<Engine name="Catalina" defaultHost="ren"> <Host name="ren" appBase="renapps"/> <Host name="stimpy" appBase="stimpyapps"/> </Engine>
二、在tomcat根目录下建立相应的文件夹:\conf\Catalina\ren和\conf\Catalina\stimpy,并在目录下建立一个Context配置文件,文件名就是虚拟目录的名字,如果是根目录就是ROOT.xml:
<?xml version="1.0" encoding="UTF-8"?> <Context docBase="x:\a" />
此处的Context不用设置path属性,因为只有在server.xml中配置才有效,其他时候path就是文件名。
三、各节点的标签都是首字母大写。
参考文档:http://tomcat.apache.org/tomcat-8.0-doc/index.html
时间: 2024-10-07 11:34:14