外文文献翻译---Servlet和JSP技术简介
《外文文献翻译---Servlet和JSP技术简介》由会员分享,可在线阅读,更多相关《外文文献翻译---Servlet和JSP技术简介(13页珍藏版)》请在毕设资料网上搜索。
1、An Overview of Servlet and JSP Technology Marty Hall and Larry Brown, 2000-07, Core Servlets and JavaServer Pages chapter 1 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 clients a
2、nd 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 applet o
3、r 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 enters in a f
4、orm 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 RMI or EJ
5、B 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, you probabl
6、y would not want it to. The same argument applies to most other applications. You need the Web middle layer to extract the results inside 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), binary (
7、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 going
8、 from the Web middle layer (the servlet or JSP page) to the client. But, there are really two varieties of data sent: the document itself and the behind-the-scenes HTTP information. Again, both varieties are critical to effective development. Sending HTTP response data involves telling the browser o
9、r other client what type of document is being returned (e.g., HTML), setting cookies and caching parameters, and other such tasks. 1.2 Why Build Web Pages Dynamically? Many client requests can be satisfied by prebuilt documents, and the server would handle these requests without invoking servlets. I
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中设计图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 外文 文献 翻译 servlet 以及 jsp 技术 简介
