Servlet編程(1)

servlet技術簡介 css

servelet圖析

Servlet技術:

在我的認爲,是進行兩個不一樣板塊交互所使用的東西,更深刻一步是,servlet服務器上的程序來處理交互功能的。舉例來講,
as you can see on the picture above,each item was separated by The Theory of MVC.the part explaining how server get the request from user where our servlet plays a vital role in transferring the package to the server. html

  • 首先咱們先來看看Jsp技術,Jsp技術是以servlet技術爲基礎的。
    Jsp全稱:java server page,顧名思義,位於服務器端的程序。
    Jsp容器和Jsp文件的位置
    另外,Jsp和servlet之間的關係須要理解一下:
    servlet和Jsp的關係
    1. client 發送用戶請求給server,http請求數據。
    2. web服務器接受請求並解析分配給Jsp引擎,通常經過url(localhost:8080/index.jsp)來請求jsp文件。
    3. Jsp引擎調用針對的Jsp文件,不只將其轉化爲servlet類並將其Jsp元素轉化爲Java代碼
      這種轉化只是簡單地將全部模板文本改用 println() 語句,而且將全部的 JSP 元素轉化成 Java 代碼。
    4. Jsp引擎轉換這些java代碼爲servlet類,同時將請求數據傳遞給Servlet引擎。
    5. 等待數據傳遞到servlet引擎中,web服務器其中的某個組件調用servlet引擎並運行servlet類。
    6. servlet類以後產生html格式的輸出流並嵌套於response中返回用戶的瀏覽器。
我在這裏意識到了一個知識點盲區:網絡請求和迴應的流程,經過在網上搜尋資料,看到一篇大佬的文章。

[Servlet基礎](https://www.cnblogs.com/rocomp/p/4808924.html) ![servlet網絡中運行流程](https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1528213933314&di=488341b49063a8117810d751b3ce94f2&imgtype=jpg&src=http%3A%2F%2Fimg1.imgtn.bdimg.com%2Fit%2Fu%3D1076809686%2C1087400012%26fm%3D214%26gp%3D0.jpg) ![形象生動展現過程](https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1528214025603&di=7dc3af8f2bb5e1ba2eadb63c807d933c&imgtype=0&src=http%3A%2F%2Fs2.sinaimg.cn%2Fmw690%2F003AIxwozy709yO4Q1311) 寫了這麼多,我其實也有點亂,接下來用一個」HelloWorld」來整理下思路(表單元素呈現)

只有前段存在表單的時候纔會存在交互,才能調用超類Httpservlet中的service()方法
- index.jsp java

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">

    <title>My JSP 'index.jsp' starting page</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!-- <link rel="stylesheet" type="text/css" href="styles.css"> -->
  </head>

  <body>
    <form action="HelloWorld" method="post" target="_blank">
    <input name="aa" type="text"><br>
    <input name="bb" type="text"><br>
    <input type="submit" value="提交">
    </form>
  </body>
</html>
  • Dao操做類 (servlet類)
    HelloWorld類
package com.Demo.Dao;

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 HelloWorld extends HttpServlet {
    private static final long serialVersionUID = 1L;
    public HelloWorld() {
        // TODO Auto-generated constructor stub
        super();
    }

    @Override
    public void destroy() {
        // TODO Auto-generated method stub
        super.destroy();
    }
    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        // TODO Auto-generated method stub
        //設置響應屬性
        resp.setContentType("text/html;charset=UTF-8");
        PrintWriter pw=resp.getWriter();
        String title="響應頁面";
        String docType = "<!DOCTYPE html> \n";
         pw.println(docType +
                "<html>\n" +
                "<head><title>" + title + "</title></head>\n" +
                "<body bgcolor=\"#f0f0f0\">\n" +
                "<h1 align=\"center\">" + title + "</h1>\n" +
                "<ul>\n" +
                " <li><b>第一項操做:</b>: "
                + req.getParameter("aa") + "\n" +
                " <li><b>第二項操做:</b>: "
                + req.getParameter("bb") + "\n" +
                "</ul>\n" +
                "</body></html>");
    }
    @Override
    protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        // TODO Auto-generated method stub
        this.doGet(req, resp);
        //在以前的時候,個人又一個知識點盲區(super和this的敏感度)
    }
}
  • web.xml文件
<?xml version="1.0" encoding="UTF-8"?>
<web-app>
  <servlet>
    <servlet-name>HelloWorld</servlet-name>
    <servlet-class>com.Demo.Dao.HelloWorld</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>HelloWorld</servlet-name>
    <url-pattern>/HelloWorld</url-pattern>
  </servlet-mapping>
</web-app>

*很是強調一點:url-pattern是須要的注意
http://localhost:8080/servlet_Demo/HelloWorld 不能在這裏配置成
/servlet_Demo/HelloWorld,根目錄不須要配置。* web

目錄結構很是重要!!!!!!!!

web文件的目錄1配置

運行啥的很少說了。。瀏覽器

In conclusion1,本身總結的流程圖。
servlet運行流程服務器

相關文章
相關標籤/搜索