Unrecognized xbean element mapping: beans in namespace http://xfire.codehaus.org

基於xfire方式發佈webservice的時候,在啓動tomcat時報錯:
Unrecognized xbean element mapping: services in namespace : http://xfire.codehaus.org/config/1.0
解決方式:


<beans xmlns="http://xfire.codehaus.org/config/1.0">
<service>
</service>
</beans>

改爲:

<beans>
<service xmlns="http://xfire.codehaus.org/config/1.0">
</service>
</beans>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章