欢迎来到毕设资料网! | 帮助中心 毕设资料交流与分享平台
毕设资料网
全部分类
  • 毕业设计>
  • 毕业论文>
  • 外文翻译>
  • 课程设计>
  • 实习报告>
  • 相关资料>
  • ImageVerifierCode 换一换
    首页 毕设资料网 > 资源分类 > DOC文档下载
    分享到微信 分享到微博 分享到QQ空间

    简单浏览器服务器三层架构毕业设计(论文)外文翻译

    • 资源ID:135123       资源大小:88.50KB        全文页数:4页
    • 资源格式: DOC        下载积分:100金币
    快捷下载 游客一键下载
    账号登录下载
    三方登录下载: QQ登录
    下载资源需要100金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。

    简单浏览器服务器三层架构毕业设计(论文)外文翻译

    1、 1 中文 1273 字 学生毕业设计(论文)外文译文 学生姓名: XXX 学号: XXXXXXXXXX 专业名称:计算机科学与技术 译文标题(中英文): 简单浏览器 /服务器三层架构 (译) Sample B/S 3-tier application 译文出处: Martin Fowler;Patterns of Enterprise Application Architecture;Addison-Wesley Professional;2003.08 指导教师审阅 签名 : 外文译文正文: 三层架构 (3-tier application) 定义: 通常意义上的三层架构就是将整个业务应用

    2、划分为:表现层( UI)、业务逻辑层( BLL)、数据访问层( DAL)。区分层次的目的即为了 “高内聚,低耦合 ”的思想。 、表现层( UI):通俗讲就是展现给用户的界面,即用户在使用一个系统的时候他的所见所得。 、业务逻 辑层( BLL):针对具体问题的操作,也可以说是对数据层的操作,对数据业务逻辑处理。 、数据访问层( DAL):该层所做事务直接操作数据库,针对数据的增添、删除、修改、更新、查找等。 在软件体系架构设计中,分层式结构是最常见,也是最重要的一种结构。微软推荐的分层式结构一般分为三层,从下至上分别为:数据访问层、业务逻辑层(又或成为领域层)、表示层。 三层结构原理: 3 个层

    3、次中,系统主要功能和业务逻辑都在业务逻辑层进行处理。 所谓三层体系结构,是在客户端与数据库之间加入了一个 “中间层 ”,也叫组件层。这 里所说的三层体系,不是指物理上的三层,不是简单地放置三台机器就是三层体系结构,也不仅仅有 B/S 应用才是三层体系结构,三层是指逻辑上的三层,即使这三个层放置到一台机器上。 三层体系的应用程序将业务规则、数据访问、合法性校验等工作放到了中间层进行处理。通常情况下,客户端不直接与数据库进行交互,而是通过 COM/DCOM 通讯与中间层建立连接,再经由中间层与数据库进行交互。 表示层 位于最外层(最上层),离用户最近。用于显示数据和接收用户输入的数据,为用户提供一

    4、种交互式操作的界面。 业务逻辑层 2 业 务逻辑层( Business Logic Layer)无疑是系统架构中体现核心价值的部分。它的关注点主要集中在业务规则的制定、业务流程的实现等与业务需求有关的系统设计,也即是说它是与系统所应对的领域( Domain)逻辑有关,很多时候,也将业务逻辑层称为领域层。例如 Martin Fowler 在 Patterns of Enterprise Application Architecture一书中,将整个架构分为三个主要的层:表示层、领域层和数据源层。作为领域驱动设计的先驱 Eric Evans,对业务逻辑层作了更 细致地划分,细分为应用层与领域层,通

    5、过分层进一步将领域逻辑与领域逻辑的解决方案分离。 业务逻辑层在体系架构中的位置很关键,它处于数据访问层与表示层中间,起到了数据交换中承上启下的作用。由于层是一种弱耦合结构,层与层之间的依赖是向下的,底层对于上层而言是 “无知 ”的,改变上层的设计对于其调用的底层而言没有任何影响。如果在分层设计时,遵循了面向接口设计的思想,那么这种向下的依赖也应该是一种弱依赖关系。因而在不改变接口定义的前提下,理想的分层式架构,应该是一个支持可抽取、可替换的 “抽屉 ”式架构。正因为如此,业务 逻辑层的设计对于一个支持可扩展的架构尤为关键,因为它扮演了两个不同的角色。对于数据访问层而言,它是调用者;对于表示层而

    6、言,它却是被调用者。依赖与被依赖的关系都纠结在业务逻辑层上,如何实现依赖关系的解耦,则是除了实现业务逻辑之外留给设计师的任务。 数据层 数据访问层:有时候也称为是持久层,其功能主要是负责数据库的访问,可以访问数据库系统、二进制文件、文本文档或是 XML 文档。 简单的说法就是实现对数据表的 Select, Insert, Update, Delete 的操作。如果要加入 ORM 的元素,那么就会包括对象和数据 表之间的 mapping,以及对象实体的持久化。 (正文页面请加页;从教务处主页下载,统一用 A4 纸单面激光打印) 3 外文正文: The definition of the 3-ti

    7、er application: Normally,3-tier application is that the entire business is divided into : User Interface(UI)、 Business Logic Layer(BLL)、 Data Access Layer(DAL).The purpose of the distinction between the level of that in order to high cohesion, low coupling thinking. 1、 User Interface(UI): Popular ta

    8、lk is to show to the user interface, that is, users in the use of a system when seen from him. 2 、 Business Logic Layer(BLL) :Issue-specific operation, it can be said that the operation of the data layer, business logic for data processing. 3、 Data Access Layer(DAL): Layer made of the direct operati

    9、on of the database services for data to add, delete, modify, update, search and so on. In terms of software architecture design, hierarchical structure is the most common, and most importantly a structure. Microsoft recommended hierarchical structure will generally be divided into three tiers, from

    10、bottom to top are: Data Access Layer, Business Logic Tier (or even a field of layer), indicating that the layer. The principle of the 3-tier application: Three levels, the system functionality and business logic to deal with in the Business Logic Tier. The so-called three-tier architecture, is in be

    11、tween the client and the database by adding a middle layer, also known as layer components. Three-tier system mentioned here are not referring to the three physical, rather than simply place the three machines is the three-tier architecture, it not only B / S application is a three-tier architecture

    12、 is the logical three-tier three-tier, even if the three layers placed on a single machine. 3-tier application system business rules, data access, so check on the legality of the middle layer for processing. Under normal circumstances, the client does not directly interact with the database, but thr

    13、ough COM / DCOM communication to establish a connection with the middle layer, middle layer and then interact with the database. User Interface(UI): User Interface(UI) is located in the outermost layer (the top), from the user recently. Used to display data and receive data entered by the user, to p

    14、rovide users with an interactive interface to operate. Business Logic Layer(BLL): Business Logic Layer system architecture is reflected in some of the core values. It concerns mainly concentrated in the formulation of business rules, business processes and business needs to achieve, such as the system design, In other words it


    注意事项

    本文(简单浏览器服务器三层架构毕业设计(论文)外文翻译)为本站会员(泛舟)主动上传,毕设资料网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请联系网站客服QQ:540560583,我们立即给予删除!




    关于我们 - 网站声明 - 网站地图 - 资源地图 - 友情链接 - 网站客服 - 联系我们
    本站所有资料均属于原创者所有,仅提供参考和学习交流之用,请勿用做其他用途,转载必究!如有侵犯您的权利请联系本站,一经查实我们会立即删除相关内容!
    copyright@ 2008-2025 毕设资料网所有
    联系QQ:540560583