tinguo002

 

tomcat虚拟目录配置

Tomcat6.0虚拟目录配置[]
设虚拟目录 "site",通过 http://localhost:8080/site 访问物理路径 D:"site 文件夹里面的内容。设置过程如下:
1.
复制 Tomcat6.0"webapps"ROOT 目录下的 WEB-INF 文件夹到 D:"site 目录下。
2.
打开 D:"site"WEB-INF 目录下的 web.xml 文件, </description> 之后加入:
<!--JSPC servlet mappings start -->
<!--JSPC servlet mappings end -->
3.
打开 Tomcat6.0"conf"server.xml 文件,在 <Host> </Host> 之间加入:
<Context path="/site" docBase="d:"site"></Context>
path="/site"
就是虚拟目录的名称
docBase="d:"site">
为物理路径
4.
打开 Tomcat6.0"conf"web.xml 文件,找到:
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
false设成true保存,重启Tomcat,现在就可以应用 http://localhost:8080/site 虚拟目录了。

Tomcat6设置虚拟目录的方法, 不修改server.xml


tomcat文件夹的conf"catalina"localhost(对于Tomcat6版本及其以上,需要自己创建catalinalocalhost这两个文件夹)

增加project .xml文件(该文件名的project要和下面的“path=“/xxx"”xxx相同)

文件内容:

<Context path="/project" reloadable="true" docBase="E:"javastudio"oob" workDir="E:"javastudio"oob"work" />


docBase
是项目文件夹的web-inf文件夹的上一层目录
workDir
是指Tomcat解析Jsp转换为Java文件,并编译为class存放的文件夹,设置在项目文件夹里面,可以避免移植到其他地方首次读取jsp文件需要重新解析 。一般格式:项目文件夹"work
reloadable
是指可以重新加载,一般设置为true,方便使用,不需要经常重启Tomcat
 

以后启动Tomcat,在浏览器输入http://localhost:8080/project就能访问
该项目的welcome文件。

转:TomCat 6.0虚拟目录配置!20080309 星期日 13:51之前在5.0下配置虚拟目录,我一般是采用在conf"server.xml中增加<Context .../>的方法,可是此法在6.0中失效(后经验证有效,可能是之前实验过程中有误)。按照tomcat 6.0启动之后的相关文档的说明http://localhost:8080/docs/config/context.html,尝试了一些方法:

-----------------------------tomcat6.0文档中关于Context的说明-------------------
You may define as many Context elements as you wish. Each such Context MUST have a unique context path. In addition, a Context must be present with a context path equal to a zero-length string. This Context becomes the default web application for this virtual host, and is used to process all requests that do not match any other Context's context path.

For Tomcat 6, unlike Tomcat 4.x, it is NOT recommended to place <Context> elements directly in the server.xml file. This is because it makes modifing the Context configuration more invasive since the main conf/server.xml file cannot be reloaded without restarting Tomcat.


Context elements may be explicitly defined:

in the $CATALINA_HOME/conf/context.xml file: the Context element information will be loaded by all webapps
in the $CATALINA_HOME/conf/[enginename]/[hostname]/context.xml.default file: the Context element information will be loaded by all webapps of that host
in individual files (with a ".xml" extension) in the $CATALINA_HOME/conf/[enginename]/[hostname]/ directory. The name of the file (less the .xml) extension will be used as the context path. Multi-level context paths may be defined using #, e.g. context#path.xml. The default web application may be defined by using a file called ROOT.xml.
if the previous file was not found for this application, in an individual file at /META-INF/context.xml inside the application files
inside a Host element in the main conf/server.xml
-------------------------------------------------------------------------------

逐一验证,方法12均无效,成功的有以下2种:(下文用%tomcat%表示Tomcat6.0的安装目录,希望在浏览器中通过http://localhost:8080/abc/default.jsp 来访问d:"myJsp"default.jsp)

方法一:(文档中说不建议使用)

找到%tomcat%"conf"server.xml,在</Host>之前加入:
<Context docBase="d:"myJsp" path="/abc" />
保存文件之后,重启Tomcat即可。注意:大小写不能错! 斜杆"/""""的方向别搞错。

方法二:该方法推荐使用,比较简单。

%tomcat%"conf"Catalina"locahost(该目录可能需要手工创建)下新建一个文件abc.xml,注意文件名中的abc就表示虚拟目录的名称,所以不可随意命名,该文件的内容为:
<Context docBase="d:"myJsp" />
重启Tomcat即可。

-------------------------------------------------------------------------------------------
其它设置:当url中未明确指定文件名时,是否列出相关目录下所有文件的开关设置:

打开 %tomcat%"conf"web.xml 文件,找到:
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
false改成true即可。

-------------------------------------------------------------------------------------------
其他人的同类经验:http://fengzhiyu-sh.javaeye.com/blog/153506 经验证无需设置文中的web application下的web.xml文件。


文章详细参考:http://www.cnblogs.com/bingoidea/archive/2009/06/06/1497787.html

欢迎大家访问我的个人网站 萌萌的IT人

posted on 2014-08-04 20:57 一堣而安 阅读(1012) 评论(0)  编辑  收藏 所属分类: java


只有注册用户登录后才能发表评论。


网站导航:
 

导航

统计

常用链接

留言簿(1)

随笔分类

随笔档案

收藏夹

搜索

最新评论

阅读排行榜

评论排行榜