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

来源:互联网 发布:阿里云 深信服 编辑:程序博客网 时间:2024/05/21 11:08
基于xfire方式发布webservice的时候,在启动tomcat时报错: 
Unrecognized xbean element mapping: services in namespace : http://xfire.codehaus.org/config/1.0 
解决方式: 
将 
Java代码  收藏代码
  1. <beans xmlns="http://xfire.codehaus.org/config/1.0">  
  2.     <service>  
  3.     </service>  
  4. </beans>  

改为: 
Java代码  收藏代码
  1. <beans>  
  2.     <service xmlns="http://xfire.codehaus.org/config/1.0">  
  3.     </service>  
  4. </beans>  
原创粉丝点击