新手求助,HTTP Status 404 问题
在tomcat里面的webapp里面创建了JSPExample文件夹,在该文件夹下面创建了JSPExample.jsp文件,和WEB_INF文件夹,WEB_INF文件夹里面从别的文件夹下复制了web.xml文件过来,然后在ie上输入
http://localhost:8080/JSPExample/JSPExample.jsp
就出现
HTTP Status 404 - /JSPExample/JSPExample.jsp
--------------------------------------------
type Status report
message /JSPExample/JSPExample.jsp
description The requested resource (/JSPExample/JSPExample.jsp) is not available.
--------------------------------------------
Apache Tomcat/7.0.27
错误
JSPExample.jsp文件内容如下
<%@ page contentType="text/html; charset=GB2312"%><center><font size = 5 color = blue> 显示问候信息</font><center><div align = "center"><% out.println("<h1>欢迎学习JSP+Ajax技术</h1>") %></div>