基于JSP的在线书店销售系统的设计与实现外文文献及翻译.pdf

上传人:l*** 文档编号:72866301 上传时间:2023-02-13 格式:PDF 页数:14 大小:474.22KB
返回 下载 相关 举报
基于JSP的在线书店销售系统的设计与实现外文文献及翻译.pdf_第1页
第1页 / 共14页
基于JSP的在线书店销售系统的设计与实现外文文献及翻译.pdf_第2页
第2页 / 共14页
点击查看更多>>
资源描述

《基于JSP的在线书店销售系统的设计与实现外文文献及翻译.pdf》由会员分享,可在线阅读,更多相关《基于JSP的在线书店销售系统的设计与实现外文文献及翻译.pdf(14页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、精选 doc 最新版毕毕 业业 设设 计计(论论 文文)外外 文文 文文 献献 翻翻 译译专专业业学学 生生 姓姓 名名班班学学级级号号指指 导导 教教 师师XXXX 学学 院院.精选 doc 最新版外文资料名称:外文资料名称:An Overview of Servlet and JSP Technology外文资料出处:外文资料出处:Internet附附件:件:1.外文资料翻译译文 2.外文原文指导教师评语:签名:签名:年年月月日日Servlet 和 JSP 技术简述.精选 doc 最新版Nagle and WiegleyXX 译摘要:摘要:Servlet 程序在服务器端运行,动态地生成We

2、b 页面与传统的 CGI 和许多其他类似 CGI 的技术相比,Java Servlet 具有更高的效率,更容易使用,功能更强大,具有更好的可移植性,更节省投资。关键字关键字:JSP 技术,Servlet,HTTP 服务1.1Servlet1.1Servlet 的功能的功能Servlets 是运行在 Web 或应用服务器上的 Java 程序,它是一个中间层,负责连接来自 Web 浏览器或其他 HTTP 客户程序的请求和 HTTP 服务器上的数据库或应用程序。Servlet 的工作是执行西门的任务,如图 1.1 所示。图 1.1Web 中间件的作用(1 1)读取客户发送的显式数据。读取客户发送的显

3、式数据。最终用户一般在页面的 HTML 表单中输入这些数据。然而,数据还有可能来自applet 或定制的 HTTP 客户程序。(2 2)读取由浏览器发送的隐式请求数据。读取由浏览器发送的隐式请求数据。图 1.1 中显示了一条从客户端到 Web 服务器的单箭头,但实际上从客户端传送到Web 服务器的数据有两种,它们分别为用户在表单中输入的显式数据,以及后台的HTTP 信息。两种数据都很重要。HTTP 信息包括 cookie、浏览器所能识别的媒体类型和压缩模式等。(3 3)生成结果。生成结果。这个过程可能需要访问数据库、执行 RMI 或 EJB 调用、调用 Web 服务,或者直接计算得出对应的响应

4、。实际的数据可能存储在关系型数据库中。该数据库可能不理解HTTP,或者不能返回 HTML 形式的结果,所有 Web 浏览器不能直接与数据库进行会话。即使它能够做到这一点,为了安全上的考虑,我们也不希望让它这么做。对应大多数其他应用程序,也存在类似的问题。因此,我们需要 Web 中间层从 HTTP 流中提取输.精选 doc 最新版入数据,与应用程序会话,并将结果嵌入到文档中。(4 4)向客户发送显式数据(即文档)向客户发送显式数据(即文档)。这个文档可以用各种格式发送,包括文本(HTML 或 XML),二进制(GIF 图),甚至可以式建立在其他底层格式之上的压缩格式,如 gzip。但是,到目前为

5、止,HTML式最常用的格式,故而 servelt 和 JSP 的重要任务之一就式将结果包装到 HTML 中。(5 5)发送隐式的发送隐式的 HTTPHTTP 响应数据。响应数据。图 1.1 中显示了一条从 Web 中间层到客户端的单箭头。但是,实际发送的数据有两种:文档本身,以及后台的 HTTP 信息。同样,两种数据对开发来说都式至关重要的。HTTP 响应数据的发送过程涉及告知浏览器或其他客户程序所返回文档的类型(如HTML),设置 cookie 和缓存参数,以及其他类似的任务。1.21.2 动态构建网页的原因动态构建网页的原因预先建立的文档可以满足客户的许多请求,服务器无需调用 servle

6、t 就可以处理这些请求。然而,许多情况下静态的结果不能满足要求,我们需要针对每个请求生成一个页面。实时构建页面的理由有很多种:1 1、网页基于客户发送的数据。、网页基于客户发送的数据。例如,搜索引擎生成的页面,以及在线商店的订单确认页面,都要针对特定的用户请求而产生。在没有读取到用户提交的数据之前,我们不知道应该显示什么。要记住,用户提交两种类型的数据:显示(即HTML 表单的数据)和隐式(即HTTP 请求的报头)。两种输入都可用来构建输出页面。基于 cookie 值针对具体用户构建页面的情况尤其普遍。2 2、页面由频繁改变的数据导出。、页面由频繁改变的数据导出。如果页面需要根据每个具体的请求

7、做出相应的改变,当然需要在请求发生时构建响应。但是,如果页面周期性地改变,我们可以用两种方式来处理它:周期性地在服务器上构建新的页面(和客户请求无关),或者仅仅在用户请求该页面时再构建。具体应该采用哪种方式要根据具体情况而定,但后一种方式常常更为方便,因为它只需简单地等待用户的请求。例如,天气预报或新闻网站可能会动态地构建页面,也有可能会返回之前构建的页面(如果它还是最新的话)。3 3、页面中使用了来自公司数据库或其他数据库断数据源的信息。、页面中使用了来自公司数据库或其他数据库断数据源的信息。如果数据存储在数据库中,那么,即使客户端使用动态Web 内容,比如 applet,.精选 doc 最

8、新版我们依旧需要执行服务器端处理。想象以下,如果一个搜索引擎网站完全使用applet,那么用户将会看到:“正在下载 50TB 的 applet,请等待!”。显然,这样很愚蠢;这种情况下,我们需要与数据库进行会话。从客户端到 Web 层再到数据库(三层结构),要比从applet 直接到数据库(二层结构)更灵活,也更安全,而性能上的损失很少甚至没有。毕竟数据库调用通常是对速度影响最大的步骤,因而,经过中间层可以执行高速缓存和连接共享。理论上讲,servelt 并非只用于处理 HTTP 请求的 Web 服务器或应用服务器,它同样可以用于其他类型的服务器。例如,servlet 能够嵌入到 FTP 或邮

9、件服务器中,扩展他们的功能。而且,用于会话启动协议服务器的servlet API 最近已经被标准化(参见 http:/jcp.org/en/jsr/detail?id=116)。但在实践中,servelt 的这种用法尚不流行,在此,我们只论述 HTTP Servlet。1.3 Servlet1.3 Servlet 相对于“传统”相对于“传统”CGICGI 的优点的优点和传统 CGI 及许多类 CGI 技术相比,Java servelt 效率更高、更易用、更强大、更容易移植、更安全、也更廉价。1 1、效率、效率应用传统的 CGI,针对每个 HTTP 请求都用启动一个新的进程。如果 CGI 程序自

10、身相对比较简短,那么启动进程的开销会占用大部分执行时间。而使用 servelt,Java虚拟机会一直运行,并用轻量级的 Java 线程处理每个请求,而非重量级的操作系统进程。类似地,应用传统的 CGI 技术,如果存在对同一 CGI 程序的 N 个请求,那么CGI 程序的代码会载入内存 N 次。同样的情况,如果使用 servlet 则启动 N 个线程,单仅仅载入 servlet 类的单一副本。这种方式减少了服务器的内存需求,通过实例化更少的对象从而节省了时间。最后,当 CGI 程序结束对请求的处理之后,程序结束。这种方式难以缓存计算结果,保持数据库连接打开,或是执行依靠持续性数据的其他优化。然而

11、,servelt 会一直停留在内存中(即使请求处理完毕),因而可以直接存储客户请求之间的任意复杂数据。2 2、便利、便利Servelt 提供大量的基础构造,可以自动分析和解码 HTML 的表单数据,读取和设置 HTTP 报头,处理 cookie,跟踪会话,以及其他次类高级功能。而在CGI 中,大部分工作都需要我们资金完成。另外,如果您已经了解了 Java 编程语言,为什么还有学校 Perl 呢?您已经承认应用 Java 技术编写的代码要比 Visual Basic,VBScript.精选 doc 最新版或 C编写的代码更可靠,且更易重用,为什么还有倒退回去选择那些语言来开发服务器端的程序呢?3

12、 3、强大、强大Servlet 支持常规 CGI 难以实现或根本不能实现的几项功能。Servlet 能够直接于 Web 服务器对话,而常规的CGI 程序做不到这一点,至少在不使用服务器专有API的情况下是这样。例如,与 Web 服务器的通信使得讲相对 URL 转换成具体的路径名变得更为容易。多个 servelt 还可以共享数据,从而易于实现数据库连接共享和类似的资源共享优化。Servelt 还能维护请求之间的信息,使得诸如会话跟踪和计算结果缓存等技术变得更为简单。4 4、可移植性、可移植性Servelt 使用 Java 编程语言,并且遵循标准的 API。所有主要的 Web 服务器。实际上都直接

13、或通过插件支持 servlet。因此。为 Macromedia JRun 编写的 servlet,可以不经过任何修改地在 Apache Tomcat,Microsoft Internet Information Server,IBM WebSphere。iPlanet Enterprise Server。Oracle9i AS 或者 StrNine WebStar上运行。他们是 java2 平台企业版的一部分,所以对 servlet 的支持越来越普遍。5 5、廉价、廉价对于开发用的网站、低容量或中等容量网站的部署,有大量免费或极为廉价的Web 服务器可供选择。因此,通过使用 servelt 和

14、 jsp,我们可以从免费或廉价的服务器开始,在项目获得初步成功后,在移植到更高性能或高级管理工具的昂贵的服务器上。这与其他 CGI 方案形成鲜明的对比,这些 CGI 方案在初期都需要为购买专利软件包投入大量的资金。价格和可移植性在某种程度上是相互关联的。例如,Marty 记录了所有通过电子邮件向他发送问题的读者的所在国。印度接近列表的顶端,可能仅次于美国。Marty曾在马尼拉讲授过 jsp 和 servlet 培训课程,那儿对 servelt 和 jsp 技术抱很大的兴趣。那么,为什么印度和菲律宾都对这项技术着呢感兴趣呢?我们推测答案可能分两部分。首先,这两个国家都拥有大量训练有素的软件开发人

15、员。其次,这两个国家的货币对美元的汇率都极为不利。因此,从美国公司那里购买专用 Web 服务器会消耗掉项目的大部分前期资金。但是,使用 servlet 和 JSP,他们能够从免费的服务器开始:Apache Tomcat。.精选 doc 最新版项目取得成功之后,他们可以转移到性能更高、管理更容易,但需要付费的服务器。他们的 servelt 和 jsp 不需要重写编写。如果他们的项目变得更庞大,他们或许希望转移到分布式环境。没有问题:他们可以转而使用 Macromedia JRun Professional,该服务器支持分布式应用。同样,他们的 servelt 和 jsp 没有任何部分需要重写。如

16、果项目变得极为庞大,错综复杂,他们或许希望使用 Enterprise JavaBeans 来封装他们的商业逻辑。因此,他们可以切换到 BEA WebLogic 或 Oracle9i AS。同样,不需要对 servlet 和 jsp 做出更改。最后,如果他们的项目变得更庞大,他们或许将他从 Linux 转移到运行 IBM WebSphere 的 IBM 大型机上。他们还是不需要做出任何更改。6 6、安全、安全传统 CGI 程序中主要的漏洞来源之一就是,CGI 程序常常由通过的操作系统外壳来执行。因此,CGI 程序必须仔细地过滤掉那些可能被外壳特殊处理的字符,如反引导和分号。实现这项预防措施的难度

17、可能超出我们的想象,在广泛应用的 CGI 库中,不断发现由这类问题引发的弱点。问题的第二个来源是,一些 CGI 程序用不自动检查数组和字符串边界的语言编写而成。例如,在 C 和 C中,可以分配一个 100 个元素的数组,然后向第 999 个“元素“写入数据实际上是程序内存的随机部分,这完全合法。因而,如果程序员忘记执行这项检查,就会将系统暴露在蓄意或偶然的缓冲区溢出攻击之下。Servelt 不存在这些问题。即使 servelt 执行系统调用激活本地操作系统上的程序,它也不会用到外壳来完成这项任务。当然,数组边界的检查以及其他内存包含特性是 java 编程语言的核心部分。7 7、主流、主流虽然存

18、在许多很好的技术,但是,如果提供商助支持他们,或开发人员不知道如何使用这些技术,那么它们的优点又如何体现呢?servelt 和 jsp 技术得到服务器提供商的广泛支持,包括 Apache,Oracle,IBM,Sybase,BEA,Maromedia,Causho,Sun/iPlanet,New Atlanta,ATG,Fujitsu,Lutris,Silverstream,World Wide WebConsortinrm,以及其他服务器。存在几种低廉的插件,通过应用这些插件,MicrosoftIIS 和 Zeus 也 同 样 支 持 servlet 和 jsp 技 术,它 们 运 行 在

19、Windows,Unix/Linus,MacOS,VMS,和 IBM 大型机操作系统之上。它们用在航空业、电子商务、在线银行、web 搜索引擎、门户、大型金融网站、以及成百上千您日常光顾的其他网站。.精选 doc 最新版当然,仅仅是流行并不能证明技术的优越性。很多泛美的例子。但我们的立场是:服务器端 Java 本非一项新的、为经证实的技术。.精选 doc 最新版An Overview of Servlet and JSP TechnologyNagle and WiegleyNagle and WiegleyAbstract:Abstract:Servlet program running i

20、n the server-side,dynamically generatedWeb page with the traditional CGI and many other similar compared to CGItechnology,Java Servlet with a more efficient,easier to use,more powerfuland has better portability,more savings to invest.Key words:Key words:JSP Technology,Servlet,HTTP server1.1 A Servle

21、ts Job1.1 A Servlets JobServlets are Javaprograms that runon Web or application servers,actingasa middle layer between requests coming from Web browsers or other HTTP clientsand databases or applications on the HTTP server.Their job is to perform thefollowing tasks,as illustrated in Figure 1-1.Figur

22、e 1-11 1Read the explicit data sent by the client.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 or a custom HTTP clientprogram.2 2Read the implicit HTTP request data sent by the browser.R

23、ead 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 varietiesof data:the explicit data that the end user enters in a form and thebehind-the-scenes HTTP inform

24、ation.Both varieties are critical.The HTTPinformation includes cookies,information about media types and compressionschemes the browser understands,and so on.3 3Generate the results.Generate the results.This process may require talking to a database,executing an RMI or EJBcall,invoking a Web service

25、,or computing the response directly.Your realdata may be in a relational database.Fine.But your database probably doesntspeak HTTP or return results in HTML,so the Web browser cant talk directlyto the database.Even if it could,for security reasons,you probably wouldnot want it to.The same argument a

26、pplies to most other applications.You needthe Web middle layer to extract the resultsinside a document.4 4Send the explicit data(i.e.,the document)to the client.Send the explicit data(i.e.,the document)to the client.精选 doc 最新版This document can be sent in a variety of formats,including text(HTMLor XM

27、L),binary(GIF images),or even a compressed format like gzip that islayered on top of some other underlying format.But,HTML is by far the mostcommon format,so an important servlet/JSP task is to wrap the results insideof HTML.5 5Send the implicit HTTP response data.Send the implicit HTTP response dat

28、a.Figure 1-1 shows a single arrow going from the Web middle layer(theservlet or JSP page)to the client.But,there are really two varieties ofdata sent:the document itself and the behind-the-scenes HTTP information.Again,both varieties are critical to effective development.Sending HTTPresponse data in

29、volves telling the browser or other client what type ofdocument is being returned(e.g.,HTML),setting cookies and cachingparameters,and other such tasks.1.2 Why Build Web Pages Dynamically?1.2 Why Build Web Pages Dynamically?many client requests can be satisfied by prebuilt documents,and theserver wo

30、uld handle these requests without invoking servlets.In many cases,however,a static result is not sufficient,and a page needs to be generatedfor each request.There are a number of reasons why Web pages need to be builton-the-fly:1 1 The Web page is based on data sent by the client.The Web page is bas

31、ed on data sent by the client.For instance,the results page from search engines and order-confirmationpages at online stores are specific to particular user requests.You dontknow what to display until you read the data that the user submits.Justremember that the user submits two kinds of data:explic

32、it(i.e.,HTML formdata)and implicit(i.e.,HTTP requestheaders).Either kindof input canbeused to build the output page.In particular,it is quite common to build auser-specific page based on a cookie value.2 2The Web page is derived from data that changes frequently.The Web page is derived from data tha

33、t changes frequently.If the page changes for every request,then you certainly need to buildthe response at request time.If it changes only periodically,however,youcould do it two ways:you could periodically build a new Web page on the server(independently of client requests),or you could wait and on

34、ly build the pagewhen the user requests it.The right approach depends on the situation,butsometimes it is more convenient to do the latter:wait for the user request.For example,a weather report or news headlines site might build the pagesdynamically,perhaps returning a previously built page if that

35、page is stillup to date.3 3TheThe Web pageWeb page uses information from corporateuses information from corporatedatabasesdatabases oror otherotherserver-side sources.server-side sources.If the information is in a database,you need server-side processing evenif the client is using dynamic Web conten

36、t such as an applet.Imagine using.精选 doc 最新版an applet by itself for a search engine site:Downloading 50 terabyte applet,please wait!Obviously,that is silly;you need to talk to the database.Going from the client to the Web tier tothe database(a three-tier approach)instead of from an applet directly t

37、oa database(a two-tier approach)provides increased flexibility and securitywith little or no performance penalty.After all,the database call is usuallythe rate-limiting step,so going through the Web serverdoes not slowthingsdown.In fact,a three-tier approachis often faster because themiddle tiercan

38、perform caching and connection pooling.In principle,servlets are not restricted to Web or application serversthat handle HTTP requests but can be used for other types of servers as well.For example,servlets could be embedded in FTP or mail servers to extend theirfunctionality.And,a servlet API forSI

39、P(Session Initiation Protocol)servers was recently standardized(see http:/jcp.org/en/jsr/detail?id=116).In practice,however,this use of servlets has not caught on,and well onlybe discussing HTTP servlets.1.3 The Advantages of Servlets Over Traditional CGI1.3 The Advantages of Servlets Over Tradition

40、al CGIJava servlets are more efficient,easier to use,more powerful,moreportable,safer,and cheaper than traditional CGI and many alternativeCGI-like technologies.1 1EfficientEfficientWith traditional CGI,a new process is started for each HTTP request.Ifthe CGI program itself is relatively short,the o

41、verhead of starting theprocess can dominate the execution time.With servlets,the Java virtualmachine stays running and handles each request with a lightweight Java thread,not a heavyweight operating system process.Similarly,in traditional CGI,if there are N requests to the same CGI program,the code

42、for the CGI programis loaded into memory N times.With servlets,however,there would be N threads,but only a single copy of the servlet class would be loaded.This approachreduces server memory requirements and saves time by instantiating fewerobjects.Finally,when a CGI program finishes handling a requ

43、est,the programterminates.This approach makes it difficult to cache computations,keepdatabase connections open,and performother optimizations that rely onpersistent data.Servlets,however,remain in memory even after they completea response,so it is straightforward to store arbitrarily complex data be

44、tweenclient requests.2 2ConvenientConvenientServlets have an extensive infrastructure for automatically parsing anddecoding HTML form data,reading and setting HTTP headers,handling cookies,tracking sessions,and many other such high-level utilities.In CGI,you haveto do much of this yourself.Besides,i

45、f you already know the Java programminglanguage,why learn Perl too?Youre already convinced that Java technology.精选 doc 最新版makes for more reliable and reusable code than does Visual Basic,VBScript,or C+.Why go back to those languages for server-side programming?3 3PowerfulPowerfulServlets support sev

46、eral capabilities that are difficult or impossibleto accomplish with regular CGI.Servlets can talk directly to the Web server,whereasregularCGIprogramscannot,atleastnotwithoutusingaserver-specific API.Communicating with the Web server makes it easier totranslate relative URLs into concrete path name

47、s,for instance.Multipleservlets can also share data,making it easy to implement database connectionpooling and similarresource-sharing optimizations.Servlets can alsomaintain information from request to request,simplifying techniques likesession tracking and caching of previous computations.4 4Porta

48、blePortableServlets are written in the Java programming language and follow astandard API.Servlets are supported directly or by a plugin on virtually everymajor Web server.Consequently,servlets written for,say,Macromedia JRuncan run virtually unchanged on Apache Tomcat,Microsoft Internet Information

49、Server(with a separate plugin),IBM WebSphere,iPlanet Enterprise Server,Oracle9i AS,or StarNine WebStar.They are part of the Java 2 Platform,EnterpriseEdition(J2EE;seehttp:/ for servlets is becoming even more pervasive.5 5InexpensiveInexpensiveA number of free or very inexpensive Web servers are good

50、 for developmentuse or deployment of low-or medium-volume Web sites.Thus,with servlets andJSP you can start with a free or inexpensive server and migrate to moreexpensiveserverswithhigh-performancecapabilitiesoradvancedadministration utilities only after your project meets initial success.Thisis in

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 应用文书 > 工作报告

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁