




已閱讀5頁,還剩9頁未讀, 繼續(xù)免費(fèi)閱讀
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
英文原文Java2StandardEditionandtheWorldofJava1IntroductionThecomputerrevolutionofthe1970sincreasedthedemandforsophisticatedcomputersoftwaretotakeadvantageoftheever-increasingcapacityofcomputerstoprocessdata.TheCprogramminglanguagebecamethelinchpinthatenabledprogrammerstobuildsoftwarethatwasjustasrobustasthecomputeritranon.Asthe1980sapproached,programmerswerewitnessinganotherspurtintheevolutionofprogramminglanguage.ComputertechnologyadvancedbeyondthecapabilitiesoftheCprogramminglanguage.Theproblemwasntnew.Itoccurredpreviouslyandcausedthedemiseofgenerationsofprogramminglanguages.Theproblemwasthatprogramswerebecomingtoocomplicatedtodesign,write,andmanagetokeepupwiththecapabilitiesofcomputers.ItwasaroundthistimethatadesignconceptbasedonSimula67andSmalltalk(fromthelate1960s)movedprogrammingtothenextevolutionarystep.Thiswastheperiodwhenobject-orientedprogramming(OOP),andwithitanewprogramminglanguagecalledC+,tookprogrammersbystorm.In1979,BjarneStroustrupofBellLaboratoriesinNewJerseyenhancedtheCprogramminglanguagetoincludeobject-orientedfeatures.HecalledthelanguageC+.(The+istheincrementaloperatorintheCprogramminglanguage.)C+istrulyanenhancementoftheCprogramminglanguage,anditbeganasapreprocessorlanguagethatwastranslatedintoCsyntaxbeforetheprogramwasprocessedbythecompiler.Stroustrupbuiltontheconceptofaclass(takenfromSimula67andSmalltalk),fromwhichinstancesofobjectsarecreated.Aclasscontainsdatamembersandmemberfunctionsthatdefineanobjectsdataandfunctionality.Healsointroducedtheconceptofinheritance,whichenabledaclasstoinheritsomeoralldatamembersandmemberfunctionsfromoneormoreotherclassesallofwhichcomplementstheconceptsofobject-orientedprogramming.2EnterJavaJustasC+wasbecomingthelanguageofchoiceforbuildingindustrial-strengthapplications,anothergrowthspurtintheevolutionofprogramminglanguagewasbudding,fertilizedbythelatestdisruptivetechnologytheWorldWideWeb.TheInternethadbeenawell-keptsecretfordecadesbeforetheNationalScienceFoundation(whooversawtheInternet)removedbarriersthatpreventedcommercialization.Until1991whenitwasopenedtocommerce,theInternetwasthealmostexclusivedomainofgovernmentagenciesandtheacademiccommunity.Oncethebarriertocommercializationwaslifted,theWorldWideWeboneofseveralservicesofferedontheInternetbecameavirtualcommunitycenterwherevisitorscouldgetfreeinformationaboutpracticallyanythingandbrowsethroughthousandsofvirtualstores.BrowserspowertheWorldWideWeb.AbrowsertranslatesASCIItextfileswritteninHTMLintoaninteractivedisplaythatcanbeinterpretedonanymachine.AslongasthebrowseriscompatiblewiththecorrectversionofHTMLandHTTPimplementation,anycomputerrunningthebrowsercanusethesameHTMLdocumentwithouthavingtomodifyitforaparticulartypeofcomputer,whichwassomethingunheardofatthetime.ProgramswritteninCorC+aremachinedependentandcannotrunonadifferentmachineunlesstheprogramisrecompiled.ThesuccessoftheInternetgaverenewedfocustodevelopingamachine-independentprogramminglanguage.AndthesameyeartheInternetwascommercialized,fivetechnologistsatSunMicrosystemssetouttodojustthat.JamesGosling,PatrickNaughton,ChrisWarth,EdFrank,andMikeSheridanspent18monthsdevelopingtheprogramminglanguagetheycalledOak,whichwasrenamedJavawhenthisnewlanguagemadeitsdebutin1995.Javawentthroughnumerousiterationsbetween1991and1995,duringwhichtimemanyothertechnologistsatSunmadesubstantialcontributionstothelanguage.TheseincludedBillJoy,ArthurvanHoff,JonathanPayne,FrankYelin,andTimLindholm.AlthoughJavaiscloselyassociatedwiththeInternet,itwasdevelopedasalanguageforprogrammingsoftwarethatcouldbeembeddedintoelectronicdevicesregardlessofthetypeofCPUusedbythedevice.ThisisknownastheEmbeddedJavaplatformandisincontinuoususetodayforclosedsystems.TheJavateamfromSunsucceededincreatingaportableprogramminglanguage,somethingthathadeludedprogrammerssincecomputerswerefirstprogrammed.Theirsuccess,however,wasfarbeyondtheirwildestdreams.ThesameconceptusedtomakeJavaprogramsportabletoelectronicdevicesalsocouldbeusedtomakeJavaprogramsrunoncomputersrunningMicrosoftWindows,UNIX,andMacintosh.Timingwasperfect.TheInternet/intranethadwhettedcorporateAmericasappetiteforcost-effective,portableprogramsthatcouldreplacemission-criticalapplicationswithinthecorporation.AndJavahadprovenitselfasaprogramminglanguageusedtosuccessfullydevelopmachine-independentapplications.3JavaVirtualMachineJavavirtualmachine(JVM)ismethodforthespecificationofthecomputerequipment.Theavailabilityofdifferentways(softwareorhardware)canbeimplemented.Compilingthevirtualmachineinstructionset,thecompilerofthemicroprocessorinstructionsetisverysimilar.TheJavavirtualmachineincludesasetofbytecodeinstructionset,asetofregisters,astack,agarbage-collectedheapandastoragedomain.JavaVirtualMachine(JVM)isanimaginarycomputerthatcanrunJavacode.AccordingtotheJVMspecificationdescribestheinterpreterportedtoaparticularcomputer,wecanguaranteethecompiledJavacodetorunonthesystem.TheJavaVirtualMachineisanimaginarymachineontheactualcomputersoftwaresimulation.Javavirtualmachinehardwareofhisownimagining,suchasprocessor,stack,registers,etc.,butalsohasacorrespondinginstruction.4BacktotheFuture:J2EEJ2EEisacompletelydifferentfromthetraditionalapplicationdevelopmenttechnologyarchitecture,containsanumberofcomponents,mainlytosimplifyandstandardizetheapplicationsystemdevelopmentanddeployment,andtoimproveportability,securityandre-usevalue.J2EECoreisasetoftechnicalspecificationsandguidelines,whichincludevarioustypesofcomponents,services,structureandtechnicallevelhavecommonstandardsandspecifications,thevariousfollowtheJ2EEarchitecturebetweendifferentplatforms,thereisagoodcompatibility,solveenterpriseback-endinformationproductsnotcompatiblewitheachother,leadingtothedifficultdilemmabetweentheinternalorexternal.IntheJ2EEarchitecture,developerscanfollowthenormativebasis,ledtothedevelopmentofenterpriseapplications;differentJ2EEsuppliers,withsupportdifferentversionsofJ2EEstandardselaborated,inordertoensurecompatibilitybetweenthedifferentJ2EEplatformsandproducts.Inotherwords,theapplicationofplant-basedJ2EEarchitecture,canbasicallybedeployedindifferentapplicationservers,nooronlyneedasmallamountofcodechanges,whichcansignificantlyimprovetheportabilityoftheapplicationsystem(Portability).TheJ2EEmaincollaborativeindustrycommontechnicalspecificationsdrawnupbytheSun(SUN)withIBMandothermanufacturers,orientedtobusiness-to-businessoperationsbetweentheJavadevelopmentenvironment.J2EEarchitecturedefinesthedifferenttypesofcomponents,suchasWebComponent,EJBComponentandallkindsofcomponentscanbereused(reuse),sothathasbeendevelopedcomponents,orcomponentsderivedthroughthepurchaseonthemarket,canfurtherassembledintothetypeofsystem.Fordevelopersonlyneedtofocusonthebusinesslogicofthesystemarchitecturedesignforavarietyofapplications,Asforthewritingoftheunderlyingcumbersomeprocedures,canbeusedwithdifferentdevelopmentplatformtoenablethedevelopmentanddeploymentofapplicationsystemthatincreasestheefficiency.CorespecificationforJ2EEEnterpriseisJavaBeans(EJBs).EJBaccordingtodifferentcharacteristics,dividedintothreetypes,namelySessionBean,EntityBean,MessageDrivenBean.SessionBeanandEntitybeansregardedastheancestoroftheEJBandbothEJBspecificationsalreadyexistintheEJB1.xversionandMessageDrivenBeaninEJB2.0specifications.TheindustryprogrammersorwebdesignersmakemoreuseoftheconvenienceofJSP/Servlet,whichdevelopedabovetheJ2EEserverapplication,ortheintegrationofvariousresourceswithinthecompany.5TheadvantagesofJ2EEJ2EEbuildscalability,flexibility,andeaseofmaintenanceofbusinesssystemsprovidesagoodmechanism:1.PreservetheexistingITassets:Companiesmustadapttothenewbusinessneeds,theuseofexistingenterpriseinformationsystemsinvestments,ratherthanre-enactacomprehensiveprogrambecomesveryimportant.Thus,anincremental(ratherthanaradicalnegated)createserver-sideplatformontopoftheexistingsystemmechanismiswantedcompany.J2EEarchitecturecantakefulladvantageoftheusersoriginalinvestment,suchasusedbysomecompaniesBEATuxedo,IBMCICS,IBMEncina,InpriseVisiBrokerandNetscapeApplicationServer.ThiswasmadepossiblebecausetheJ2EEhasbroadindustrysupportandsomeimportantareasofenterprisecomputingtheparticipationofsuppliers.EachsupplierexistingcustomersupgradepathwithoutabandoningexistinginvestmentstoenterthefieldofportableJ2EE.BasedonJ2EEplatformproductsalmostrunonanyoperatingsystemandhardwareconfigurationcanalsobereservedforusebytheoperatingsystemandhardware.2.Efficientdevelopment:J2EEallowssomegeneric,verycumbersometaskservertotheintermediatesuppliertocomplete.Sothatdeveloperscanfocusonhowtocreatebusinesslogic,toshortenthedevelopmenttime.Advancedmiddlewarevendorsprovidethesecomplexmiddlewareservices:statemanagementservice-enablesdeveloperstowritelesscode,donotcareabouthowtomanagethestate,thiscanbedonefasterprogramdevelopment.persistentmanagementservice-sothatdevelopersdonotneedtoencodethedataaccesslogicwillbeabletowriteapplications,cangeneratemorecompact,withadatabase-independentapplications,suchapplicationseasiertodevelopandmaintain.distributedshareddataobjectcacheservice-allowsdeveloperstothepreparationofhigh-performancesystem,whichgreatlyimprovethescalabilityoftheoveralldeployment.3.Supportheterogeneousenvironments:J2EEdeploymentcanbeabletoinheterogeneousenvironmentstodevelopportableprograms.J2EE-basedapplicationdoesnotrelyonanyparticularoperatingsystem,middlewareandhardware.Therefore,therationaldesignofJ2EE-basedprogramtodeveloponcedeployedtoavarietyofplatforms.Thisinatypicalheterogeneousenterprisecomputingenvironmentiscrucial.TheJ2EEstandardalsoallowscustomerstoorderJ2EE-compliantthird-partyoff-the-shelfcomponents,deploythemtoaheterogeneousenvironment,savingthecostoftheentireprogramdevelopedbytheirown.4.Scalability:Thecompanieswillhavetochooseaserver-sideplatformthatshouldbeabletoprovideexcellentscalabilitytomeetintheirsystemonalargenumberofnewcustomersinthecomme
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 【正版授權(quán)】 IEC 61987-41:2025 EN-FR Industrial-process measurement and control - Data structures and elements in process equipment catalogues - Part 41: Lists of properties (LOPs) of pr
- 2025年食品安全與風(fēng)險(xiǎn)控制專業(yè)知識測試試卷及答案
- 2025年物業(yè)管理師職業(yè)考試試卷及答案
- 2025年傳媒與傳播學(xué)考試題目及答案
- 2025年計(jì)算機(jī)基礎(chǔ)知識測試試題及答案
- 三人合伙買車協(xié)議書
- 萬科物業(yè)安全題庫及答案
- 七步洗手法試題及答案
- 七個(gè)模塊面試題及答案
- 租臨場地合同協(xié)議書
- 線上陪玩店合同協(xié)議
- 蓉城小史官考試試題及答案
- 中美關(guān)稅貿(mào)易戰(zhàn)
- 中華人民共和國農(nóng)村集體經(jīng)濟(jì)組織法
- 中華傳統(tǒng)文化之文學(xué)瑰寶學(xué)習(xí)通超星期末考試答案章節(jié)答案2024年
- MOOC 中國電影經(jīng)典影片鑒賞-北京師范大學(xué) 中國大學(xué)慕課答案
- 醫(yī)院小型壓力蒸汽滅菌器的使用及管理
- 公司管理制度:格林美管理手冊
- 國儲(chǔ)銅事件的分析.
- 高績效班組打造(課堂PPT)
- 汽車維修管理制度管理辦法匯編
評論
0/150
提交評論