- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
毕业设计论文---关于java技术 外文翻译
附录一 :ABOUT JAVA TECHNOLOGY
Servlets and JSP: An Overview
1. What are Java Servlets?
Servlets are Java technologys answer to CGI programming. They are programs that run on a Web server and build Web pages. Building Web pages on the fly is useful (and commonly done) for a number of reasons:
The Web page is based on data submitted by the user. For example the results pages from search engines are generated this way, and programs that process orders for e-commerce sites do this as well.
The data changes frequently. For example, a weather-report or news headlines page might build the page dynamically, perhaps returning a previously built page if it is still up to date.
The Web page uses information from corporate databases or other such sources. For example, you would use this for making a Web page at an on-line store that lists current prices and number of items in stock.
2. What are the Advantage of Servlets Over Traditional CGI?
Java servlets are more efficient, easier to use, more powerful, more portable, and cheaper than traditional CGI and than many alternative CGI-like technologies. (More importantly, servlet developers get paid more than Perl programmers :-).
Efficient. With traditional CGI, a new process is started for each HTTP request. If the CGI program does a relatively fast operation, the overhead of starting the process can dominate the execution time. With servlets, the Java Virtual Machine stays up, and each request is handled by a lightweight Java thread, not a heavyweight operating system process. Similarly, in traditional CGI, if there are N simultaneous request to the same CGI program, then the code for the CGI program is loaded into memory N times. With servlets, however, there are N threads but only a single copy of the servlet class. Servlets also have more alternatives than do regular CGI programs for optimizations such as caching previous computations, keeping database connections open, and the like.
Convenient. Hey, you already know Java.
您可能关注的文档
- 毕业设计论文---高产基本农田土地整理项目立项施工组织设计方案说明文本.doc
- 毕业设计论文---高层住宅消防逃生设备的设计与研究.doc
- 毕业设计论文---高端消费人群首饰消费与形态研究.doc
- 毕业设计论文---高力水泥公司采石场石灰岩矿设计安全专篇.doc
- 毕业设计论文---高密市创建国家环保模范城市规划设计.doc
- 毕业设计论文---高档住宅智能家居系统建议方案.doc
- 毕业设计论文---高频开关稳压电源电路的设计 .doc
- 毕业设计论文---高速公路x大桥施工组织设计方案说明文本.doc
- 毕业设计论文---高速公路路网监控管理中心设计方案说明文本修订方案.doc
- 毕业设计论文---高速回转体运动参数测试系统的设计.doc
- 毕业设计论文---关于对家乡民风民俗了解程度的调查报告.doc
- 毕业设计论文---关于济南伊赛牛肉市场管理的论述市场营销.doc
- 毕业设计论文---关于恒石矿业销售业务内部控制的研究 外文翻译.doc
- 毕业设计论文---关于物流园区物流分析及规划报告 .doc
- 毕业设计论文---关于上海交大昂立股份公司品牌建设的研究论文.doc
- 毕业设计论文---管理会计在中小企业中的应用探讨.doc
- 毕业设计论文---光伏二期工程临时用电施工组织设计方案说明文本.doc
- 毕业设计论文---官地抗震锚索施工组织设计方案说明文本.doc
- 毕业设计论文---光效在动画制作中的重要性.doc
- 毕业设计论文---广场工程施工监理合同.doc
最近下载
- 建设项目环境保护管理条例(2017).pdf VIP
- 隧道窑安全生产条件和设施综合分析报告(2019.8.25).pdf VIP
- 高中生物学人教版必修2 遗传与进化第2章 基因和染色体的关系科学家的故事 染色体遗传理论的奠基人摩尔根.pptx
- 私立民办高中学校项目招商引资方案.pptx VIP
- 初三第一次家长会 课件(共43张PPT).ppt VIP
- 私立民办高中学校项目运营方案.pptx VIP
- 【全面预算管理在三只松鼠公司的应用实例6000字】.docx VIP
- 私立民办高中学校项目立项报告.pptx VIP
- 私立民办高中学校项目申请报告.pptx VIP
- 红色党政风《新时代的中国国家安全》白皮书党课PPT模板.pptx VIP
文档评论(0)