真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

UnabletolocateSpringNamespaceHandlerforXMLschemanamespace

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代碼  

  1. 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代碼  

  1. http\://www.springframework.org/schema/tx=org.springframework.transaction.config.TxNamespaceHandler  

spring.schemas:

Txt代碼  

  1. http\://www.springframework.org/schema/tx/spring-tx-2.0.xsd=org/springframework/transaction/config/spring-tx-2.0.xsd  

  2. http\://www.springframework.org/schema/tx/spring-tx-2.5.xsd=org/springframework/transaction/config/spring-tx-2.5.xsd  

  3. http\://www.springframework.org/schema/tx/spring-tx-3.0.xsd=org/springframework/transaction/config/spring-tx-3.0.xsd  

  4. http\://www.springframework.org/schema/tx/spring-tx-3.1.xsd=org/springframework/transaction/config/spring-tx-3.1.xsd  

  5. 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代碼  

  1.   

  2.     org.apache.maven.plugins  

  3.     maven-shade-plugin  

  4.      1.7.1  

  5.       

  6.           

  7.             package  

  8.               

  9.                 shade  

  10.               

  11.               

  12.                   

  13.                     

  14.                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">  

  15.                         com.chenzhou.test.Main  

  16.                       

  17.                   

  18.               

  19.           

  20.       

  21.   

由于沒有配置META-INF/spring.handlers和META-INF/spring.schemas所以如果工程中依賴了Spring的多個依賴,在打包時后面的會把前面的覆蓋,使得這兩個文件中永遠(yuǎn)只保存最后一個spring依賴的schema和handler。

解決方法就是在里面加上META-INF/spring.handlers和META-INF/spring.schemas的配置:

Xml代碼  

  1.   

  2.     org.apache.maven.plugins  

  3.     maven-shade-plugin  

  4.      1.7.1  

  5.       

  6.           

  7.             package  

  8.               

  9.                 shade  

  10.               

  11.               

  12.                   

  13.                     

  14.                         implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">  

  15.                         META-INF/spring.handlers  

  16.                       

  17.                     

  18.                         implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">  

  19.                         META-INF/spring.schemas  

  20.                       

  21.                     

  22.                         implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">  

  23.                         com.chenzhou.test.Main  

  24.                       

  25.                   

  26.               

  27.           

  28.       

  29.   

和第一段配置對比,主要增加了:

Xml代碼  

  1.     implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">  

  2.     META-INF/spring.handlers  

  3.   

  4.     implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">  

  5.     META-INF/spring.schemas  

  6.   

這段配置意思是把spring.handlers和spring.schemas文件以append方式加入到構(gòu)建的jar包中。

 

修改完后,再次打包,此時就會把工程依賴的所有的spring依賴的schema和handler都加載到spring.handlers和spring.schemas里面。加載applicationContext.xml時就不會報錯了


當(dāng)前題目:UnabletolocateSpringNamespaceHandlerforXMLschemanamespace
地址分享:http://weahome.cn/article/gscjij.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部