外文翻译---Servlet和JSP技术简介
《外文翻译---Servlet和JSP技术简介》由会员分享,可在线阅读,更多相关《外文翻译---Servlet和JSP技术简介(15页珍藏版)》请在毕设资料网上搜索。
1、 附录一外文原文 (摘自 Marty Hall and Larry Brown, 2000-07, Core Servlets and JavaServer Pages 第一章 ) An Overview of Servlet and JSP Technology 1.1 A Servlets Job Servlets are Java programs that run on Web or application servers, acting as a middle layer between requests coming from Web browsers or other HTTP
2、clients and databases or applications on the HTTP server. Their job is to perform the following tasks, as illustrated in Figure 1-1. Figure 1-1 1 Read the explicit data sent by the client. The end user normally enters this data in an HTML form on a Web page. However, the data could also come from an
3、 applet or a custom HTTP client program. 2 Read the implicit HTTP request data sent by the browser. Figure 1-1 shows a single arrow going from the client to the Web server (the layer where servlets and JSP execute), but there are really two varieties of data: the explicit data that the end user ente
4、rs in a form and the behind-the-scenes HTTP information. Both varieties are critical. The HTTP information includes cookies, information about media types and compression schemes the browser understands, and so on. 3 Generate the results. This process may require talking to a database, executing an
5、RMI or EJB call, invoking a Web service, or computing the response directly. Your real data may be in a relational database. Fine. But your database probably doesnt speak HTTP or return results in HTML, so the Web browser cant talk directly to the database. Even if it could, for security reasons, yo
6、u probably would not want it to. The same argument applies to most other applications.You need the Web middle layer to extract theresultsinside a document. 4 Send the explicit data (i.e., the document) to the client. This document can be sent in a variety of formats, including text (HTML or XML), bi
7、nary (GIF images), or even a compressed format like gzip that is layered on top of some other underlying format. But, HTML is by far the most common format, so an important servlet/JSP task is to wrap the results inside of HTML. 5 Send the implicit HTTP response data. Figure 1-1 shows a single arrow
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中设计图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 外文 翻译 servlet 以及 jsp 技术 简介
