首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

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

2012-08-27 
Unrecognized xbean element mapping: services in namespace http://xfire.codehaus启动服务:Unrecognize

Unrecognized xbean element mapping: services in namespace http://xfire.codehaus
启动服务:

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

原来是这样:

<beans xmlns="http://xfire.codehaus.org/config/1.0">
<service >
  <name>smsservice</name>
  <serviceClass>com.smsweb.www.webservice.ISmsService</serviceClass>
  <implementationClass>com.smsweb.www.webservice.impl.SmsServiceImpl</implementationClass>
  <style>wrapped</style>
  <use>literal</use>
  <scope>application</scope>
</service>

改成这样:就可以了

<beans>

<service  xmlns="http://xfire.codehaus.org/config/1.0">
  <name>smsservice</name>
  <serviceClass>com.smsweb.www.webservice.ISmsService</serviceClass>
  <implementationClass>com.smsweb.www.webservice.impl.SmsServiceImpl</implementationClass>
  <style>wrapped</style>
  <use>literal</use>
  <scope>application</scope>
</service>

因为当前用的sprint的,不认得这个标注方式。


本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/AsenWei/archive/2009/08/25/4483963.aspx

热点排行