zoukankan      html  css  js  c++  java
  • Servlet Study 1

    this content below are come from the  JSR154 by sun

    Just for record purpose. if this relate to some law problem ,please contact with  me, my email iszbwork000@163.com

    What is a Servlet?

    A servelt is a java technology-based Web component,managed by a container that generates dynamics content.

    Servlet interact with web clients via a request/response  paradigm implemented by the servlet container. 

    What is a servlet container?

    The servlet container is a part of a web server  or a application server that provides the network services over which requests and response are sent

    decodes MIME-based requests, and formats MIME-based responses ,A servlet container also  contains and manages servlets through their lifecycle.

    A typical sequence of event

    1,A client access a Web server and makes an http request.

    2,The request is received by the Web server and hand off to the servlet container.The servlet container can be running in the same process as the host Web server,

    in a different process on the same host,or on a different host from the Web server for which it processes requests

    3,The servlet container determines which servlet to invoke based on the configuration of its servlets ,and calls it with objects representing the request and response.

    4,The servlet uses the request object to find out who the remote user is ,what http post parameters may have been sent as part of this request.and other relevant data

    The servlet performs whatever logic it was programmed with,and generates data to send back to the client via the response object

    5 once the servlet has finished processing the requet ,the servlet container ensures that the response is properly flushed  and returns control bakc to the host Web server

  • 相关阅读:
    (九)栈上分配与逃逸分析
    (八)内存分配策略
    (七)垃圾收集器
    (六)垃圾回收算法
    (五)垃圾回收之判定垃圾对象
    (四)java对象的结构和对象的访问定位
    (三)java虚拟机内存管理和线程独占区和线程共享区
    Spark SQL1.2与HDP2.2结合
    待整理
    Ambari部署HDP:HBase Master启动后自动消失
  • 原文地址:https://www.cnblogs.com/mengjianzhou/p/5986844.html
Copyright © 2011-2022 走看看