我是一个struts2的初学者,按照
max的方法建了一个struts2的工程,目录结构如下图:
在WebContent目录下建一个名叫index.html的页面,在tomcat中配置虚拟路径
<Context path="/struts2" docBase="F:\Struts2.0\WebContent" debug="0" crossContext="true" reloadable="true"/>
然后重起tomcat,在浏览器中输入
http://localhost:8080/struts2提示:HTTP Status 404 - /struts2/。
但是,当我在tomcat配置虚拟路径时,这样配置
<Context path="/struts2" docBase="F:\Struts2.0" debug="0" crossContext="true" reloadable="true"/>
重起tomcat,在浏览器中输入
http://localhost:8080/struts2/WebContent,这时浏览器中就可以显示出index.html页面。
为什么会出现这种情况呢?
但是我在建其他工程,非struts2的工程的时候,就不会出现这种情况,难道是我的tomcat5.5不支持struts2吗?也不可能啊。
posted on 2007-08-30 19:08
Elven 阅读(625)
评论(2) 编辑 收藏