tomcat4.1.27如何配置自定义目录???高手救我~~(50分)

  • 主题发起人 主题发起人 黑衣人
  • 开始时间 开始时间

黑衣人

Unregistered / Unconfirmed
GUEST, unregistred user!
以前用tomcat4.0,做了成功了现在升级了版本反而不行怎么回事?
在4.0时将server.xml中
<Context path="/examples"do
cBase="examples" debug="0"
reloadable="true" crossContext="true">
改为
<Context path="/pro"do
cBase="pro" debug="0"
reloadable="true" trusted="false" crossContext="true">
然后将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>
改为
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>//index.jsp为pro目录下的文件
</welcome-file-list>
在IE地址栏中输入localhost8080就直接转到了pro目录下的index.jsp,在4.1.27中这么改结果显示的是root目录下的文件列表~~~高手救我~~
 
对你就改里面的XML文件,应有两个的你查查看!
 
楼上的,我没看懂你的意思~~~
 
你用http://localhost8080/pro就可以了或者改掉root的上下文环境,把pro的上下文环境设成默认的上下文
 
在server.xml中找到
<!-- Tomcat Root Context -->
<!--
<Context path=""do
cBase="ROOT" debug="0"/>
-->
改成
<!-- Tomcat Root Context -->
<Context path=""do
cBase="pro" debug="0"/>
 
后退
顶部