html表单不在java servlet中呈现

时间:2012-04-27 22:46:51

标签: java html xml servlets html-form

我正在做一个非常简单的教程来学习java servlet编程。出于某种原因,在eclipse中进行教程时,浏览器没有呈现我正在编写的html表单中的提交按钮。我已多次检查代码,包括尝试许多小的更改甚至谷歌搜索确认我确实记得我的基本HTML。但问题仍然存在。

具体来说,当我在eclipse中运行我的本地Tomcat服务器上的SimpleForm.html时,它会呈现userName输入框,但之后它只输出所有html代码的文本版本,从提交的输入标记开始按钮。

以下是重新创建问题所需的信息。有谁能告诉我如何解决这个问题?

教程是在这个链接上,大约花了九分半钟:http://www.youtube.com/watch?v=MnUJl3NYRRc&feature=endscreen&NR=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>SimpleServletProject</display-name>
    <servlet>
    <servlet-name>xmlServlet</servlet-name>
    <servlet-class>org.koushik.javabrains.XmlServlet</servlet-class>
</servlet>
<servlet-mapping>
    <servlet-name>xmlServlet</servlet-name>
    <url-pattern>/xmlServletpath</url-pattern>
</servlet-mapping>
</web-app>

XmlServlet.java

package org.koushik.javabrains;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class XmlServlet extends HttpServlet {

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String userName = request.getParameter("userName");
    out.println("Hello! "+ userName);   
}   
}

SimpleForm.html

<!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">
</head>
<body>
    <form action='xmlServletPath'>
        <input name='userName' />
        <input type='submit' />
    </form>
</body>
</html>

3 个答案:

答案 0 :(得分:0)

您错过了HTML文件中的表单操作中的“/”。它应该是

<form action='/xmlServletPath'>

答案 1 :(得分:0)

我认为属性应该是双引号。尝试改变这样

<form action="/xmlServletPath">
        <input name="userName" />
        <input type="submit" />
</form>

答案 2 :(得分:0)

你的web.xml中的

url-pattern是“xmlServletpath”,但实际上是“xmlServletPath” java区分大小写,尝试将xmlServletpath放入您的操作中。这样:

<form action='xmlServletpath'>

应该是正确的。