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

  • 相关阅读:
    数据字典/动态性能视图
    参数管理
    expdp实现oracle远程服务器导出到本地
    jquery 操作单选按钮
    vs2012加载T4MVC模板
    Asp.net Mvc 过滤器执行顺序
    oracle版本及字符集查询
    ora-01658: 无法为表空间*****中的段创建 INITIAL 区
    SmtpClient发送邮件
    盒模型padding和margin对滚动条位置的影响
  • 原文地址:https://www.cnblogs.com/mengjianzhou/p/5986844.html
Copyright © 2011-2022 走看看