87497118 2010-04-02
tomcat配置虚拟目录:
目标:当我们输入项目名称时,如:http://localhost:8080/abc显示abc项目下的jsp页面列表
方法一:
1、为了避免访问项目默认首页,便于开发。首先配置项目的web.xml文件
方法如下:
删除<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
2、配置虚拟目录
tomcat->conf->server.xml
在<host></host>之间添加如下:
<Contextpath="/Struts2"docBase="E:\demo\Struts2\WebRoot"debug="0"reloadable="true"
crossContext="true"/>
具体解释如下:path:表示虚拟目录的名称,访问时输入http://localhost:8080/Struts2
doBase:表示项目的实际目录,为了访问所有页面。
3、注释掉tomcat->conf->web.xml中的
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
修改:
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
<param-value>0</param-value>
</init-param>
<init-param>
<param-name>listings</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
中的false改为true
方法二:
1.重复方法一中的步骤一
2.在tomcat->conf->下新建Catalina文件夹目录(有则不用新建),新建localhost文件夹
(有则不用新建),新建一个Struts2.xml文件(注意Struts2就是虚拟目录的名称,不可随便
命名),该文件的内容为
<ContextdoBase="E:\demo\Struts2\WebRoot"/>
3.重复方法一中的步骤三
[size=x-large][/size]
在tomcat6版本中:1、本人不推荐。在tomcat\conf下server.xml中找到<hostname="localhost"appbase="webapps"unpackwars="true
Tomcat的Web应用默认是放置在其webapps目录下的,通过配置可以重新为其设置虚拟目录。在<HOST>...</HOST>节点中加入如下配置。docBase属性配置虚拟目录对应磁盘上的真实目录