黑
黑衣人
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目录下的文件列表~~~高手救我~~
在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目录下的文件列表~~~高手救我~~