用記事本編寫一個Servlet項目

來源:互聯網
上載者:User

標籤:

第一步:建立目錄

建立一個檔案夾FirstServlet,然後在FirstServlet目錄下面再建兩個檔案夾,分別為:WEB-INF和src。最後在WEB-INF下面建一個classes檔案夾

第二步:編寫Sevlet

在src下面,添加一個檔案HelloServlet.java。代碼如下:

 1 package com.firstServlet; 2  3 import javax.servlet.*; 4 import javax.servlet.http.*; 5 import java.io.*; 6  7 public class HelloServlet extends HttpServlet 8 { 9     public void service(ServletRequest req,ServletResponse resp) throws ServletException,IOException{10             resp.getWriter().write("Hello Servlet");11         }12 }

 

第三步:編譯HelloServlet.java檔案

 

 

 

編譯後,會在src目錄下面出現com檔案夾,將這個檔案夾移動到WEB-INI>classes目錄下面

 

第四步:建立web.xml

在WEB-INI下面建立一個web.xml檔案,內容如下:

 1 <?xml version="1.0" encoding="UTF-8"?> 2 <web-app version="2.5"  3     xmlns="http://java.sun.com/xml/ns/javaee"  4     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  5     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee  6     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> 7   8     <servlet> 9         <servlet-name>HelloServlet</servlet-name>10         <servlet-class>com.firstServlet.HelloServlet</servlet-class>11     </servlet>12     <servlet-mapping>13         <servlet-name>HelloServlet</servlet-name>14         <url-pattern>*.do</url-pattern>15     </servlet-mapping>16 </web-app>

 

第五步:部署

1、刪除src目錄

2、將FirstServlet拷貝到tomcat的

3、通過瀏覽器訪問 http://localhost:8080/FirstServlet/HelloServlet.do

用記事本編寫一個Servlet項目

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.