|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
自己的整个学习思路完全被老师的讲课思路所牵制,这样几节课听下来,恐怕自己的见解都应该是书里的知识点了,根本谈不上自身发现问题,分析问题,和解决问题能力的切实提高。
关于headers的细节拜见OSGi标准中的3.2节。一些OSGi完成框架大概会撑持一些不同凡响的jar包,但是这些jar包关于OSGi的格局仍是稳定的。
TheSpringextenderrecognizesabundleas"Spring-powered"andwillcreateanassociatedapplicationcontextwhenthebundleisstartedifoneorbothofthefollowingconditionsistrue:
假如满意以下两个前提,Springextender会经由过程一个bundle的具有"Spring-powered"的考证,当这个bundle启动时会为其创立一个相干联的applicationcontext:
ThebundleclasspathcontainsafolderMETA-INF/springwithoneormorefilesinthatfolderwitha.xmlextension.
这个bundle的classpath包括一个目次META-INF/spring,这个目次中有一个或多个扩大名为.xml的文件。
META-INF/MANIFEST.MFcontainsamanifestheaderSpring-Context.
这个bundle中的META-INF/MANIFEST.MF文件包括一个名为Spring-Context的header。
Inaddition,iftheoptionalSpringExtender-Versionheaderisdeclaredinthebundlemanifest,thentheextenderwillonlyrecognizebundleswherethespecifiedversionconstraintsaresatisfiedbytheversionoftheextenderbundle(Bundle-Version).ThevalueoftheSpringExtender-Versionheadermustfollowthesyntaxforaversionrangeasspecifiedinsection3.2.5oftheOSGiServicePlatformCoreSpecification.
别的,假如bundle的manifest声了然可选header-SpringExtender-Version,那末extender将仅仅认可与之版原形符的指定版本束缚的bundle(bundle的Bundle-Version)。SpringExtender-Version的值必须遵守OSGi标准3.2.5节中指定的版本局限。
IntheabsenceoftheSpring-Contextheadertheextenderexpectsevery".xml"fileintheMETA-INF/springfoldertobeavalidSpringconfigurationfile,andalldirectives(seebelow)takeontheirdefaultvalues.
在短少Spring-Context的情形下,springextender仍旧以为一切META-INF/spring中".xml"的文件都是spring的设置文件,一切的header都是默许值。
Anapplicationcontextisconstructedfromthissetoffiles.Asuggestedpracticeistosplittheapplicationcontextconfigurationintoatleasttwofiles,namedbyconventionmodulename-context.xmlandmodulename-osgi-context.xml.Themodulename-context.xmlfilecontainsregularbeandefinitionsindependentofanyknowledgeofOSGi.Themodulename-osgi-context.xmlfilecontainsthebeandefinitionsforimportingandexportingOSGiservices.Itmay(butisnotrequiredto)usetheSpringDynamicModulesOSGischemaasthetop-levelnamespaceinsteadoftheSpringbeansnamespace.
applicationcontext就是依据这些文件(META-INF/spring中".xml"的文件)机关的。一个保举的做法是将applicationcontext设置文件最少支解成2个文件,习气上定名为[模块名-context.xml]和[模块名-osgi-context.xml]。modulename-context.xml文件包括了不依附与OSGi相干的bean的界说(能够了解为一般bean界说)。modulename-osgi-context.xml文件则界说那些引进或输入OSGi服务的bean。这大概必要利用SpringDynamicModules的OSGischema做为顶级定名空间,代替spring的bean定名空间,但这不是必需的。
<p>
而学习JAVA我觉得最应该避免的就是:只学习,不思考,只记忆,不实践! |
|