簡體   English   中英

如何在Eclipse中運行servlet?

[英]How to run servlet in Eclipse?

安裝細節:

首先我安裝了jdk,然后添加了一個環境變量

變量名稱=“路徑”

變量值=“ C:\\ Program Files \\ Java \\ jdk1.7.0_45 \\ bin”(java目錄)

然后提取日食和tomcat

解壓縮后,我從apache-tomcat-7.0.23 \\ bin中編輯catalina.bat並添加以下內容:“ set JAVA_HOME = C:\\ Program Files \\ Java \\ jdk1.7.0_45”

然后,我通過創建新的動態Web項目制作了我的第一個Servlet。

<!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=UTF-8">
<title>Test Form</title>
</head>
<body>

<h1>JAVA TEST</h1>

<form action ="work.html" method ="get">

<input type="submit" value="login">
</form>



</body>
</html>

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

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

/**
 * Servlet implementation class work
 */
@WebServlet("/work.html")
public class work extends HttpServlet {
    private static final long serialVersionUID = 1L;

    /**
     * @see HttpServlet#HttpServlet()
     */
    public work() {
        super();
        // TODO Auto-generated constructor stub
    }

    /**
     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType("text/html");
        PrintWriter out = response.getWriter();

        out.print("<html>");
        out.print("<head>");
        out.print("<title>Login Authentication Result</title>");
        out.print("<h2>Welcome to servlet</h2>");
        out.print("<p> powered by" + getServletContext().getServerInfo()+ "</p>");
        out.print("</body>");
        out.print("</hmtl>");
        out.close();
    }

    /**
     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
     */
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        // TODO Auto-generated method stub
    }

}

<?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" 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>Test3</display-name>
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

在此處輸入圖片說明

我是servlet的新手。 我不知道為什么單擊index.html中的按鈕時總是出現此錯誤

在此處輸入圖片說明

我想我也有同樣的問題

只需在eclipse中配置Tomcat!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM