标签:src 代码 cal 技术 catalan nbsp hello size lan
原来我们的项目放到webapps下,现在放到外面,也希望tomcat可以找到它!把应用放到tomcat之外,这就是外部应用了。应用已经不在tomcat中了,这时我们需要在tomcat中配置外部应用的位置,配置的方式一共有两种:
1. conf/server.xml:打开server.xml文件,找到<Host>元素,在其中添加<Context>元素,代码如下:
server.xml
1) path:指定当前应用的名称;
2) docBase:指定应用的物理位置;
3) 浏览器访问路径:http://localhost:8080/别名/index.html。
2. conf/catalana/localhost:在该目录下创建 名称.xml文件,在该文件中编写<Context>元素,代码如下:
1) 文件名:指定当前应用的名称;
2) docBase:指定应用的物理位置;
3) 浏览器访问路径:http://localhost:8080/名称/index.html。
标签:src 代码 cal 技术 catalan nbsp hello size lan
原文地址:http://www.cnblogs.com/greatfish/p/6082925.html