从资源管理器调用war文件中的HTML页面

时间:2011-08-14 07:07:59

标签: java html tomcat servlets

我是Servlets的新手。我创建了一个基本的HTML createStudent.html。 HTML页面在表单操作中调用servlet。我正在使用Eclipse& Tomcat 6.0。我已经在tomcat服务器上部署了web项目。当我试图调用HTML页面时,它没有打开。

项目名称为com.student,HTML页面名称为createStudent.html,位于@ location WebContent\WEB-INF\

我正在尝试使用网址http://localhost:8080/com.student/createStudent.html

调用HTML页面

我错过了什么吗?

2 个答案:

答案 0 :(得分:2)

WEB-INF下的所有内容都无法被外界看到。将其向下移动到一个目录到WebContent

答案 1 :(得分:1)

将createStudent.html放在WebContent中。

  com.student\WebContent\createStudent.html