版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、附件 1:外文资料翻译译文基于 JSP 网页自动生成工具的设计与实现Web开发技术是In ternet应用的一个重要方面,而 JSP又是Web开发的最 先进的技术,是当前Web开发人员的首选技术。但是由于JSP对Web开发人员要 求较高,所以许多一般的Web开发人员还不能够使用这一项先进的技术。讨论基 于模板和标签库的JSP网页自动生成工具的设计和实现,提出具体的设计思想和 实现方法。随着Wide Web的普及,动态网页技术也急速发展。从原来的CGI( CommonGateway In te rface )到 ASP(Active Server Page ),都从某种程度上满足了 网页开发人员
2、对动态网页开发技术的需求。但是不管是CGI还是ASP都存在一定 的局限性,如CGI对服务器资源的耗费,ASP只能同Microsoft IIS 一起使用等, 这些都限制了这些技术的使用范围, 极大地阻碍了它们的推广。 广大的页面开发 人员都热切地盼望一种统一的页面开发技术, 该技术应该具有的特点: 与操作 平台无关,能够在任何Web或应用程序服务器上运行;将应用程序逻辑和页面 显示分离;提供代码重用,简化开发基于Web的交互式应用程序的过程。JSP( Java Server Page )技术就是被设计用来满足这样的要求的。 JSP是 由 SunMicroSystem 公司于 1999年 6月推出
3、的新的网页开发技术, 它是基于 Java Serv let以及整个Java体系的 Web开发技术,是Servlet2 . 1API的扩展。禾U 用这一技术,可以建立先进、安全和跨平台的动态网站。Java是未来的主流开发技术,具有很多优势。JSP则是Java在In ternet / Intranet Web上的重要应用技术,得到了广泛的支持和承认,它可以和各种Java 技术完好地结合在一起,从而实现非常复杂的应用。作为一种基于文本的、以显示为中心的开发技术,JSP提供了 Java Servlet的所有好处。为了做到逻辑功能和显示功能分开,JSP已经可以和JavaBeans、Enterprise
4、JavaBeans (EJE)和Servlet 一起工作。JSP的开发人员可以通过 使用JavaBeans、EJB和Servlet来完成大部分与网站逻辑相关的工作,而仅仅 把显示的工作交给JSP页面来完成。内容和显示逻辑分开的好处在于,更新页面 外观的人员不必懂得Java代码,而更新Java类的人员也不必是设计网页的行家。 这就可以用带Java类的JSP页面来定义 Web模板,以建立一个具有相似外观的 页面组成的网站。Java类完成数据提供,在模板中就没有 Java代码,这意味着 这些模板可以由一个HTML编写人员来维护。JSP作为当前主流的网页开发技术,具有如下特点:(1)将内容的生成和显示
5、进行分离:使用 JSP技术,Wet页面开发人员可以使用HTML或者XML标识来设计和格式化最终的页面。使用 JSP标识或者小脚本来生成页面上的动态内容(内容是根据请求来变化的) 。生成内容的逻辑被封装 在标识和JavaBeans组件中,并且捆绑在小脚本中,所有的脚本在服务器端运行。 如果核心逻辑被圭寸装在标识和 JavaBeans中,那么其他人,如Web管理人员和页 面设计者,能够编辑和使用JSP页面,而不影响内容的生成。(2)强调可重用的组件:绝大多数JSP页面依赖于可重用的、跨平台的组件 来完成应用程序所要求的更为复杂的处理。得益于 Java 的操作平台无关性,开 发人员能够很方便共享和交
6、流执行普通操作的组件, 或者使得这些组件为更多的 使用者所使用。 基于组件的方法加速了总体的开发过程, 极大地提高了项目整体 开发的效率。虽然JSP功能强大,但是它要求网页开发人员对 Java要相当熟悉。而现在 Java程序员还比较少,对一般的网页开发人员来说,JSP的语法还是比较难于掌 握的。所以,就需要有一种网页开发工具,为一般的网页开发人员提供常用的 JSP应用,让只懂得一般页面开发技术(HTML的开发人员也能够使用JSP的强 大功能。系统设计目标和使用的主要技术:( 1)设计目标本系统的设计目标是为只懂得 HTML旦完全不了解JSP的一般网页开发人员 提供一个网页开发工具,使他们能够根
7、据系统文档,通过标签使用JSP的常用功 能,最后生成一个只包含静态 HTML和 JSP标签的动态JSP网页。( 2)主要技术本系统在设计时,主要考虑使用模板和 JSP标签的技术来实现。1、模板技术模板技术被广泛地应用于各种开发和应用系统中。 它预先生成一些常用的框 架结构,使用户可以根据自己的需要方便地从模板库中选择模板, 而不用自己重 新去搭建,节省了用户的开发时间,方便了用户的使用。在本系统中,将页面按 照功能类型进行分类,归纳出常用的页面类型,生成模板库。2、标签库技术在JSP中,动作是可以创造与访问程序语言对象和影响输出流的元素。JSP定义了六个标准的动作。 除了这六个标准动作以外,
8、用户可以定义自己的动作来 完成特定的功能。 这些动作被称为客户化动作, 它们是可重用的程序模块。 通过 这些动作,程序员就可以在JSP页面中把页面的显示功能也部分地封装起来, 使 整个页面更加简洁和易于维护。在一个JSP页面中,这些客户化动作是通过客户 化 标 签 来 调 用 的 。 而 标 签 库 ( Tag Library ) 就 是 客 户 化 标 签 的 集 合。JSP标签库是一种通过JavaBeans生成基于XML勺脚本的方法。它是JSP的最大特点之一。通过标签库,能够无限制地扩展JSP应用,完成任何复杂的应用JSP 标签库具有以下特点: 易于使用:JSP中的标签和一般的HTML标记
9、外表上是完全一样的,使用 起 来 和 普 通 的 HTML 标 记 一 样 方 便 。 易于代码重用: 标签库中的每一个标签都能完成一定的功能。 一旦定义好了一 个标签库, 只需要把这个标签库包装成一个 Jar 文件,那么以后只要在别的系统 中使用这个标签库就行了,而不用重新开发代码,极大地提高了系统开发效率, 降低了开发成本。 易于代码维护:所有的应用逻辑都封装在标签处理器和 JavaBeans中,所有的 标签都集中在一个标签库中。如果需要更新代码或者需要修改一个网页上的功 能,只需要修改相应的标签即可。 通过这种统一维护方式, 不用在每个网页上去 作 修改 , 极 大地 减少 了 维护 的
10、 工作 量, 节约 了 维 护 成 本 。 易于系统扩充: 如果需要向系统中添加新的功能, 只需要定义一个新的标签来完成这一功能即可,无需对系统的其它方面作任何改动。标签库可以继承JSP规范各方面的特性。这样就可以无限制地扩展和增加 JSP的功能,而不需要等待 下一版本JSP的出现。系统的组成和实现1)系统组成11 / 11本系统主要由四个部分组成包括 Oracle 、Sybase、1、数据库连接部分: 本系统支持常用的几个数据库,MSSQLServer MySQ和DB2根据用户选择的数据库类型和用户提供的数据库名称 、 用 户 名 、 密 码 使 用 JDBC 同 数 据 库 相 连2 、系
11、统基本表生成部分:和数据库连接以后,根据同数据库相连的用户名 生成两个系统基本表 TCTables 和 TCColumns,TCTables 表包含在该数据 库中属于该用户的所有的表的英文名称、中文名称和一些属性,如是否可修改、 是否可查询等;TC- Columns表包含在该数据库中属于该用户的所有的表的所有 列的中英文名称和其它一些属性。 如是否可显示、 是否可查询等。 这两个系统基 本表在整个系统的开发过程中提供用户所使用数据库的基本信息。3 、模板选择和网页生成部分:该部分是系统的核心部分。它包含了两个子 模块。模板选择部分: 系统为用户提供模板选择界面, 让用户根据需要从模板库 中 选
12、 择 所 要 使 用 的 模 板 。 模板处理部分: 根据用户选择的模板, 系统调用指定的模板处理模块对这 个模板进行处理。 当处理程序遇到模板中的标签时, 就为用户提供交互界面, 让 用户为指定的标签输入参数, 并由系统验证用户输入的标签的有效性。 最后由系 统 完 成 JSP 页 面 的 生 成 。 4、网页预览和修改部分:网页生成出来以后,系统为用户提供了一个网页预览 窗口和代码查看修改窗口。通过这个预览窗口,用户可以预览一下生成出来的 JSP页面的效果。如果用户对页面的静态方面的效果不太满意,用户可以通过代 码查看修改窗口修改代码中的 HTML弋码。如果用户对页面的静态效果有进一步 的
13、要求,系统还为用户提供了一个调用 Dreamweaver编辑器的接口,用户可以使 用它来对生成出来的 JSP 页面的静态效果进行进一步的修改和完善。 (2)系统的实现1、 模 板 库 和 标 签 库 的 实 现标签库的规划和设计在整个系统设计中至关重要, 它关系到了代码重用的程 度 和 系 统 运 行 的 效 率 。 它 的 规 划 应 该 遵 循 以 下 原 则 。1)在标签中应该尽量少的包含静态的 HTML对于一般用户来说,标签是透明的。用户不能够查看和修改标签。如果在标签中包含了过多的静态HT- ML语句, 将影响用户 对页面的静态效果的修改和完善, 限制标签的使用。2)尽量提高代码的重
14、用度。在对 JSP应用进行分类是尽量把公用的JSP应 用提取出来, 形成标签。 而不用在每个标签中都重复实现该应用。 这样在以后要 对该应用进行修改和完善时, 只需对这一个标签进行修改即可, 易于代码的维护。3)方便用户的使用。在设计标签库时,应该充分考虑到用户的使用情况,使 用 户 能 够 很 容 易 和 方 便 地 理 解 和 使 用 标 签 。标签库的定义:定义一个标签库,必须首先定义一个标签库描述文件(TLD)。这是一个基于XML的脚本文件,在这个文件中定义了 XMLJ的版本、所使 用的编码、标签库的版本、所使用的JSP的版本、标签库的名称和这个库中所包含的所有的标签的定义和参数描述,
15、包括标签的名称,标签所对应的 Java 类, 标签的描述信 息等。 标签的实现:一个标签就是一个特殊的Java类,这个类必须继承TagSupport 类,这个类是在 javax servlet jsp tagext 包中定义的。在标 签类中,包含了这个标签的参数初始化方法(Set/Get)、标签的主体处理方法(Handler ) 以 及 供 下 一 级 标 签 调 用的 方法等。 模板的实现:一个模板就是一个含有标签引用的 JSP文件。为了在模板中引用 所 定义 的 标 签 , 必 须 首 先 引入 标签库。v % tagliburi =“ tag . tld ” prefix =“ ctag
16、 ”>其中 uri 指定标签库描述文件的路径; prefix 指定引用标签时所使用的前 缀。在模板中引用指定的标签时, 使用引入标签库时所指定的前缀, 指定标签的 名称;为标签的参数赋值。 2 、 系 统 开 发 环 境本系统主体程序开发使用的是 Borland 公司的 JBuilder 6 0,模板开发使 用是Microsoft 公司的Front Page2000,标签库开发使用的是 UltraEdit 编辑 器,JDK采用的是JDK1. 4。系统测试环境是JRun3. 0。Java是未来开发语言的主流,而Java在Web上的主要应用JSP也必将成为 未来Web开发的主流技术。本系统采
17、用了 JSP的最大特点之一的标签库,使一般 的Web开发人员也能够方便地使用JSP强大的动态页面功能,开发出技术先进的 JSP动态Web页面。由于本系统采用Java语言进行开发,所以可以在任何支持 图形化界面的操作系统下运行, 实现了完全的与平台无关。 本系统易于扩充和完 善。在以后可以考虑为用户提供接口, 使用户可以自己扩充模板库和标签库, 进 一步增强系统的功能。附件 2:外文原文Produce the design of the tool and realize automaticallyon the basis of JSP webpageIt is an important resp
18、ect that Internet uses that Web develops technology, and JSP is the most advanced technology that Web is developed , it is present Web developer's first-selected technology. But because JSP has relatively high expectations for Web developer, a lot of general Web developers can not use this advan
19、ced technology . The discussion produces the design of the tool and realizes automatically on the basis of JSP webpage of the template and label storehouse, put forward concrete design philosophy and implementation method .With the popularization of WWW (World Wide Web ), the technology of the dynam
20、ic webpage is developed rapidly too. From original CGI (Common Gateway In-terface ) to ASP (Active Server Page ), have met the webpage developer to the demand for developing technology of the dynamic webpage to a certain extent. But no matter CGI or ASP have certain limitation, for instance, consumi
21、ng to resources of the server of CGI, ASP can only be used etc. with Microsoft IIS, all these have limited scope of application of the technology, have hindered their popularization greatly. The vast page developers all look forward to a kind of unified page and develop tech no logy earn estly, char
22、acteristic that this tech no logy there should be : Have nothing to do with the operating platform, can run on any Web or the application program server ; Show the logic and page of application program that separates ; Offer codes to put in an position, simplify and develop the course based on inter
23、active application program of Web.JSP (Java Server Page ) technology is designed and used for responding to the request that like this. JSP is developed technology by the new webpage that Sun MicroSystem Company put out in June of 1999, it is that Web based on Java Serv-let and the whole Java system
24、 develops technology, and Servlet2. Expansion of 1API. Utilize this technology, can set up advancedly , safely and stepping dynamic websites of the platform .Java is the future mainstream to develop technology , have a lot of advantages . JSP is Java important application technology on Internet/Intr
25、anet Web , get extensive support and admit, it can conbine with various kinds of Java technology together intactly , thus realize very complicated application.As a kind of technology of development based on text , taking showing as centre, JSP has offered all advantages of Java Servlet. Logic functi
26、on in order to make sure and showing the function was separated , JSP can already work with JavaBeans , Enterprise JavaBeans (EJB ) and Servlet . The developer of JSP can finish the work that majority and website's logic are correlated with through using JavaBeans , EJB and Servlet , and only as
27、sign the work shown to JSP page to finish. Content and show advantage that logic separate lie in , upgrade person , page of appearance needn't understand Java code , the personnel upgrading Javas needn't be experts who design webpage either. This can define Web template in JSP page with Java
28、s , in order to set up websites made up of a page with similar appearance. Java completion data offer, have Java code among template, this mean template these can write by one HTML person is it maintain to come.JSP develops technology as the webpage of the mainstream at present, has the following ch
29、aracteristics:(1) Separate the formulation and showing of the content : Using JSP technology, the page developer of Web can use HTML or XML identification to design and format the final page . Use JSP identification or bound foot turn into dynamic content of page actually (whether content according
30、to is it come change to ask). Produce logic of content of the identification and JavaBeans package , truss up of the little script encapsulation, all scripts run in the end of the server. If key logic among identification and JavaBeans, then other people, such as Web administrative staff and page de
31、signer encapsulation, can edit and use JSP page , and does not influence the formulation of the content .(2) Emphasize the reusable package : Most JSP pages depend on the reusable one, the package stepping the platform finish more complicated treatment with required application program. Benefitting
32、from the independence of operating platform of Java, the developer can be very convenient to share and exchange and carry out the ordinary package that operated, or make these packages used by more users. The method based on package has accelerated the total development course, the efficiency of imp
33、roving the project and developing wholly greatly.Though JSP is powerful, it requires the webpage developer should be quite familiar with Java. There are still relatively few Java programmers now, for general webpage developer, the grammar of JSP is more difficult to grasp . So, need a kind of webpag
34、e developing instrument and offer commonly used JSP application to general webpage developer, is it understand general page develop developer of technology (HTML ) can use strong function of JSP too only to let.Systematic design object and main technology of use :(1)Design objectSystem this design o
35、bject for understand but HTML understand general webpage developer of JSP offer a webpage developing instrument at all only, enable them to follow the systematic file, use the daily function of JSP through the label, produce one finally and only include static HTML and dynamic JSP webpage of JSP lab
36、el.(2)Main technologyThis system is in the design, consider using the technology of the template and JSP label to realize mainly.1、Technology of the templateThe technology of the template is widely applied to various kinds of development and application system. It produces some commonly used frame s
37、tructure in advance , uses the family to choose the template from the template storehouse conveniently according to the needs of one's own one, is it is it put up to go again by oneself to need , save construction period in user , facilitate use of user. In this system , classify the page accord
38、ing to the function type , sum up the commonly used page type, produce the template storehouse.2、Storehouse technology of the labelIn JSP, movements can create and visit the language target of the procedure and influence the element exported and flowed. JSP has defined six standard movements. Except
39、 six standard movement these, user can define own movement finish the specific function. These movements are known as the customer movement, they are the reusable procedure module . Through movement these, programmer can some encapsulation stand up too display function of page in JSP page, make the
40、whole page more succinct and easier to maintain. In a JSP page, movements were transfered through the customer label in these customers. And the label storehouse (Tag Library ) is the set of the customer label.JSP label storehouse is that one kind produces the method based on script of XML through J
41、avaBeans. It is one of the greatest characteristics of JSP. Through the label storehouse , can expand JSP application unrestrictedly , finish any complicated application demand.JSP label storehouse has the following characteristic : Easy to use: The labels in JSP and general HTML marks are totally t
42、he same in appearance, it is as convenient as ordinary HTML mark to use. The easy code is paid most attention to: Every label in the label storehouse can finish certain function . Define ready to eat one label storehouse , is it pack one Jarlabel storehouse to needonly, then only need use this label
43、 storehouse in other systems afterwards, needn't develop codes again , has raised the system and developed efficiency greatly, have reduced the development cost. The easy code is safeguarded: All application logic is encapsulated in label processor and JavaBeans, all labels concentrate on a labe
44、l storehouse. If need to upgrade codes or need to revise the function on a webpage, only need to revise the corresponding label. Maintain way in unison through this kind , it is unnecessary in each webpage is it is it fix to act as to get onning, have reduce the work load safeguarded greatly, has ec
45、onomized the cost of safeguarding. The easy system is expanded : If need to add the new function to the system , only need to define a new label to finish this function, do not need to do any change to other respects of the system. Can inherit JSP normal characteristics of various fields in the labe
46、l storehouse. Can expand and increase the function of JSP unrestrictedly like this, and does not need to wait for the appearance of the next edition JSP .Systematic composition and realizing :(1)The system making upThis system is made up of four parts mainly :1、 The database joins some: This system
47、supports several daily databases , including Oracle, Sybase, MSSQLServer, MySQL and DB2, use JDBC and database to link to each other according to database type and database name , user name , password that users offer that users choose. 2、 The basic form of system produces some: After joining with t
48、he database , produce the basic form TC-Tables and TC-Columns of two systems according to the user name linking to each other with the database , TC-Tables form includes English name , Chinese name and some attribute of form belonging to this user in this database , for instance can revise , can inq
49、uire about ; The Chinese and English name of the row and some other attribute that TC-Columns form includes belonging to all forms of this user's in this database . For instance can show , can inquire about . Basic information of the database that these basic forms of two systems provide to user
50、's institute for use in the course of development of the whole system.3、The template is chosen to produce some with the webpage: This part is a key part of a system. It includes two pieces of sub module . The template is chosen some: The system offers the template to user and chooses the interfa
51、ce, let users choose the templates used from the template storehouse according to the need. The template is dealt with some: According to template that user choose, system transfer designated template deal with module is it punish to go on to these template. When dealing with the label that the proc
52、edure meets in the template, offer the mutual interface to user, let user input parameter for designated label , prove system validity of label that user input. Finished the formulation of JSP page systematically finally. Webpage preview is with revising some: After the webpage was produced out, the
53、 system has offered a webpage preview window and code to user and looked over that revises the window. Through this preview window, users can look at the result of JSP page produced out in advance .If user static result of respect in page very satisfied, user can through code look over revise window
54、 revise HTML code of code. If users have further demands for the static result of the page, the system has also offered a piece of interface which transfers DreamWeaver editing machine to user, users can use it to carry on further modification and perfection to the static result of JSP page that is
55、produced out .(2)Systematic realization1、 Realization of the template storehouse and label storehouseThe planning and design of the label storehouse are essential in the whole system design, efficiency that the degree and system that are put in an position have operated that its relation has reached
56、 codes. Its planning should follow the following principle.(1) Should try one's best little including static HTML among label. To general user, the label is transparent. Users can not look over and revise labels . If include too many static HT-ML sentence in the label , will influence the modifi
57、cation and perfection of user's static result to the page, limittheuseofthelabel.(2) Try one's best to raise the paying most attention to degree of the code. Is it is it is it is it is it is it get to JSP public JSP out to withdraw to use to try one's best to classify to go on to use, fo
58、rm labels. Do not use and realize this application repeatedly in each label . While revising and perfecting to using like this , only need to revise this label, maintenance of the easy code.(3) Facilitate users' use. While designing the label storehouse , should fully consider users' operati
59、ng position , it can very easy and understanding and using labels conveniently to use the family. Definition of the label storehouse: Define a label storehouse, must define a label storehouse and describe the file (TLD ) at first . This is a script based on XML, have defined the edition of XML in this file , codes used, the edition ,
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 年产xx再生塑料米项目建议书
- 年产xx办公耗材项目可行性研究报告(可行性分析)
- 腹腔镜疝气手术
- 2024年四氟丙烯项目投资申请报告代可行性研究报告
- 关于机械安全
- 大班健康教案《心存感恩之心》
- 中班游戏活动教案:照镜子
- 中班美术活动教案及教学反思《圆圆的荷叶》
- 2023-2024学年一年级下学期数学《动手做(二)》(自主学习)导学案
- 医疗专家介绍
- 高考英语单词3500记忆短文40篇
- 口腔咨询师年总结
- 子宫异常出血病例分析报告
- 妇科膏方调补资料课件
- 易学行业创业分析
- 2024传染病预防ppt课件完整版
- 特殊使用级抗菌药物申请表
- 管理学课件决策与决策方法2
- 小学美术艺术测评分析报告
- 医疗器械培训教学培训课件
- 电气测试技术46热电阻
评论
0/150
提交评论