- 1、本文档共15页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
中间件复习笔记讲述
2015年-11月-13日
INTRO
概念
一类独立的系统软件和服务程序
A class of standalone system-level software and services procedures
在操作系统的顶部
Working on the top of OS
管理计算机资源和网络
Managing computational resources and network communications
支持分布式通信
Supporting distributed apps
功能
在异构的网络环境中,涉及到跨连通性和可操作问题中
提供统一的协议和接口
Providing standardized interfaces and protocols
隐藏实现细节
Hiding implementation details
提高程序的可移植性
Increasing the portability of apps
放置于操作系统和数据库管理系统的顶部
为高级应用的开发和执行提供环境
Providing environments for the execution and development of higher-level apps
协助软件工程师灵活高效地开发和集成复杂的分布式软件
Assisting software engineers in flexibly and efficiently developing and integrating complex distributed software
中间件发展的主要因素
隐藏异构型Hiding heterogeneity
硬件异构hardware heterogeneity
操作系统异构 OS heterogeneity
数据库异构 database heterogeneity
支持可操作性supporting inter-operability
不同的平台 different platforms
不同的网络协议 different network protocols
不同的通信机制 different communication mechanisms
提高软件的复用率 improving efficiency and quality of software development
主要类别
远程过程调用中间件RPC remote procedure call middleware
对象请求代理中间件ORB object request brokers middleware
面向信息中间件 MOM message-oriented middleware
数据库访问中间件 DAM database access middleware
事务处理中间件TPM transaction processing middleware
RMI
对象请求代理ORB
提供一个框架,使得远程对象可以在网络中以同样的方式使用在网络中的本地对象
Providing a framework where remote object can use local objects in the same way over the network
当对象在客户端和服务器之间传递时,提供功能的编组和解组的功能
Providing functionalities for marshalling and unmarshaling when objects are transmitted between clients and servers.
客户端和服务器之间的传输隐藏实现的细节,这使得开发人员能够有效地实现分布式应用程序,而无需面对复杂的底层操作系统和网络通信
Hiding the implementation details, which enable developers to implement distributed apps efficiently without facing the complex underlying operating systems and network communications
JAVA RMI 的概述
用java编写分布式对象
Writing distributed objects using java
直接用java对象来为分布式计算机建模
Simple and direct model for distributed computation with java objects
以java为中心,由此带来了安全性和分布式计算的可移植性
Centered around java, thus bringing the power of Java Safety
文档评论(0)