按照课程始终报错:
HTTP Status 404 - /
--------------------------------------------------------------------------------
type Status report
message /
description The requested resource is not available.
###解决方法###
在web.xml配置欢迎页,如下:
Web.xml中添加
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
这么改过还是有问题。
最后。。。。
找了好久的问题,最后才发现,在发布的目录里面没有index.jsp页面。
直接从源目录复制进入即可。
就成功了。