java服務(wù)中整合了spring,在Eclipse里本地啟動時沒問題,但是部署到局域網(wǎng)linux服務(wù)器上時解析spring applicationContext.xml報錯,具體報錯信息如下:
公司主營業(yè)務(wù):成都做網(wǎng)站、網(wǎng)站設(shè)計、移動網(wǎng)站開發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競爭能力。成都創(chuàng)新互聯(lián)是一支青春激揚、勤奮敬業(yè)、活力青春激揚、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊。公司秉承以“開放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對我們的高要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊有機會用頭腦與智慧不斷的給客戶帶來驚喜。成都創(chuàng)新互聯(lián)推出措美免費做網(wǎng)站回饋大家。
Console代碼
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Unable to locate Spring NamespaceHandler for XML schema namespace [http://www.springframework.org/schema/context]
關(guān)于這個問題,糾結(jié)了我大半天時間,網(wǎng)上的資料也是眾說紛紜,有的說是spring版本不統(tǒng)一、有些說是缺少對應(yīng)的spring依賴的。不過這些原因都被我逐一排除了。
功夫不負(fù)有心人,在仔細(xì)地對比和排查原因之后,發(fā)現(xiàn)了問題的所在,在我的jar包下的META-INF目錄下,有兩個跟spring相關(guān)的文件:spring.handlers、spring.schemas,打開這兩個文件一看,里面都只包含了spring-tx的配置
spring.handlers:
Txt代碼
http\://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler
spring.schemas:
Txt代碼
http\://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd
http\://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd
http\://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd
http\://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd
http\://www.springframework.org/schema/tx/spring-tx.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd
里面并沒有spring-context的schema和handler配置,所以會報錯。
那么問題的根源是什么呢,在stackoverflow上找到了答案:http://stackoverflow.com/questions/1937767/spring-3-0-unable-to-locate-spring-namespacehandler-for-xml-schema-namespace
因為我使用了maven-shade-plugin這個maven打包插件,主要原因是插件配置不當(dāng)導(dǎo)致,我原來的配置如下:
Xml代碼
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
由于沒有配置META-INF/spring.handlers和META-INF/spring.schemas所以如果工程中依賴了Spring的多個依賴,在打包時后面的會把前面的覆蓋,使得這兩個文件中永遠(yuǎn)只保存最后一個spring依賴的schema和handler。
解決方法就是在里面加上META-INF/spring.handlers和META-INF/spring.schemas的配置:
Xml代碼
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
和第一段配置對比,主要增加了:
Xml代碼
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
這段配置意思是把spring.handlers和spring.schemas文件以append方式加入到構(gòu)建的jar包中。
修改完后,再次打包,此時就會把工程依賴的所有的spring依賴的schema和handler都加載到spring.handlers和spring.schemas里面。加載applicationContext.xml時就不會報錯了