0

所有,请原谅我是 Java Web 世界的新手,我正在尝试编写一个 Web 项目进行测试。但似乎我没有得到我预期的结果。我不知道它发生了什么。请帮助审查它。这是我到目前为止所做的。

  1. MyFirstWeb在 Eclipse 中使用选项创建一个动态 Web 项目Generate web.xml DD
  2. index.jsp在.below目录下添加一个WebContent就是里面的页面代码。
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
    "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>My Title</title>
</head>
<body>
<% java.util.Date d = new java.util.Date(); %>
<h1>
Today's date is <%= d.toString() %> and this jsp page worked!
</h1>
</body>
</html>

在我将它发布到 Eclipse 中的内置 Tomcat 服务器运行时。服务器启动时没有错误。但是我的 url 有一个空页面http://localhost:8080/MyFirstWeb/index.jsp,为什么?谢谢。

4

2 回答 2

2

添加到您的 web.xml

<welcome-file-list>
   <welcome-file>index.jsp</welcome-file>
</welcome-file-list>
于 2013-05-03T04:18:08.893 回答
1

好吧,我在 Eclipse 中使用了您的确切代码,它工作得很好。你能发布错误是什么吗?并检查你的 web.xml 是否有这个

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
  <display-name>MyFirstWeb</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
</web-app>
于 2013-05-03T04:21:36.543 回答