zoukankan      html  css  js  c++  java
  • 添物不花钱学JavaEE(基础篇)- Servlet




    Servlet是Java Web开发必须要掌握的。

     

    Servlet是什么?

     

    A servlet is a Java technology based web component, managed by a container, that generates dynamic content. Like other Java-based components, servlets are platform independent Java classes that are compiled to platform neutral bytecode that can be loaded dynamically into and run by a Java enabled web server. Containers, some- times called servlet engines, are web server extensions that provide servlet function- ality. Servlets interact with web clients via a request/response paradigm implemented by the servlet container. 

     

    Servlet Container是什么?

     

    The servlet container is a part of a web server or application server that provides the network services over which requests and responses are sent, decodes MIME based requests, and formats MIME based responses. A servlet container also contains and manages servlets through their lifecycle. 

     

    推荐图书:


    Servlet Java  Web 编程(郭宏志)

    http://study.163.com/course/introduction/648001.htm

     

    推荐阅读

    Servlet 工作原理解析 

    http://www.ibm.com/developerworks/cn/java/j-lo-servlet/

     

    总结

    Servlet是JavaEE程序员必须掌握的核心技能之一。

    欢迎加入程序员的世界,添物科技为您服务。

    欢迎关注添物网的微信(微信号:tianwukeji),微博(weibo.com/91tianwu/),或下载添物APP,及时获取最新信息。
    免费加入QQ群:557373922(内有干货)。
    添物网(http://www.91tianwu.com)出品
    转载声明:本文系添物网原创出品,转载本文请标明出处,完整标注来源[添物网],(包括链接http://www.91tianwu.com)

  • 相关阅读:
    [编程题]多多的数字组合
    mac传输文件到服务器
    git 清除缓存、查看add内容
    go build
    vim编辑器
    Git: clone指定分支
    查看端口占用以及kill
    curl小记录
    Python3.9 malloc error: can’t allocate region
    设计模式-策略模式
  • 原文地址:https://www.cnblogs.com/hehehaha/p/6332393.html
Copyright © 2011-2022 走看看