首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

Unrecognized xbean element 地图ping: beans in namespace http://xfire.codehaus.org/

2013-10-18 
Unrecognized xbean element mapping: beans in namespace http://xfire.codehaus.org/config/1.0原因是因

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

原因是因为xfire中内嵌的是spring1.2.8,而spring的1.X与2.X之间命名空间的方式改变了...

解决方式:

将原来的文件如下

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

 

改为

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

即可,

如果你是在myeclipse直接创建的web项目的话,需要把META-INF(包含xfire/services.xml)的内容复制到WEB-INF下

热点排行