资源描述:
《Spring的web框架-外文翻译》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、英文原文Springcontainsalotoffunctionalityandfeatures,whicharewell-organizedinsevenmodulesshowninthediagrambelow.Thissectiondiscusseseachtheofmodulesinturn.TheCorepackageisthemostfundamentalpartoftheframeworkandprovidestheDependencyInjectionfeaturesallowingyo
2、utomanagebeancontainerfunctionality.ThebasicconcepthereistheBeanFactory,whichprovidesafactorypatternremovingtheneedforprogrammaticsingletonsandallowingyoutodecoupletheconfigurationandspecificationofdependenciesfromyouractualprogramlogic.OntopoftheCorepac
3、kagesitstheContextpackage,providingawaytoaccessbeansinaframework-stylemanner,somewhatresemblingaJNDI-registry.Thecontextpackageinheritsitsfeaturesfromthebeanspackageandaddssupportfortextmessagingusinge.g.resourcebundles,event-propagation,resource-loading
4、andtransparentcreationofcontextsby,forexample,aservletcontainer.TheDAOpackageprovidesaJDBC-abstractionlayerthatremovestheneedtodotediousJDBCcodingandparsingofdatabase-vendorspecificerrorcodes.Also,theJDBCpackageprovidesawaytodoprogrammaticaswellasdeclara
5、tivetransactionmanagement,notonlyforclassesimplementingspecialinterfaces,butforallyourPOJOs(plainoldjavaobjects).TheORMpackageprovidesintegrationlayersforpopularobject-relationalmappingAPIs,includingJDO,HibernateandiBatis.UsingtheORMpackageyoucanuseallth
6、oseO/R-mappersincombinationwithalltheotherfeaturesSpringoffers,likesimpledeclarativetransactionmanagementmentionedbefore.Spring'sAOPpackageprovidesanAOPAlliancecompliantaspect-orientedprogrammingimplementationallowingyoutodefine,forexample,method-interce
7、ptorsandpointcutstocleanlydecouplecodeimplementingfunctionalitythatshouldlogicallyspeakingbeseparated.Usingsource-levelmetadatafunctionalityyoucanincorporateallkindsofbehavioralinformationintoyourcode,alittlelike.NETattributes.Spring'sWebpackageprovidesb
8、asicweb-orientedintegrationfeatures,suchasmultipartfunctionality,initializationofcontextsusingservletlistenersandaweb-orientedapplicationcontext.WhenusingSpringtogetherwithWebWorkorStruts,thisisthepackagetointegratewith.Sp