哪位大神帮我看下,这是什么问题啊,说是不能注入这个类...

如题:

 org.springframework.beans.factory.BeanCreationException: 
Error creating bean with name 'com.rjs.marketing.api.service.MarketingRestService':
Cannot resolve reference to bean 'marketingRestService' while setting bean property 'ref'; 
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'marketingRestService': 
Injection of autowired dependencies failed;
nested exception is org.springframework.beans.factory.BeanCreationException: 
Could not autowire field:
private com.rjs.marketing.app.service.MarketingService com.rjs.marketing.app.rest.MarketingRestServiceImpl.marketingService;
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'marketingService':
Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException: 
Could not autowire field: 
com.rjs.marketing.app.service.task.RecommendService com.rjs.marketing.app.service.MarketingService.recommendService; 
nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'recommendService':
Injection of autowired dependencies failed; nested exception is org.springframework.beans.factory.BeanCreationException:
Could not autowire field:
private com.rjs.marketing.app.vo.ServerConfig com.rjs.marketing.app.service.task.RecommendService.serverConfig; 
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'serverConfig' defined in class path resource [rjs-marketing-app_context.xml]: 
Initialization of bean failed; nested exception is org.springframework.beans.ConversionNotSupportedException:
Failed to convert property value of type 'java.lang.String' to required type 'java.util.List' for property 'pushConfig'; 
nested exception is java.lang.IllegalStateException:
Cannot convert value of type [java.lang.String] to required type [java.util.Map] for property 'pushConfig[0]':
no matching editors or conversion strategy found

Error creating bean with name 'com.rjs.marketing.api.service.MarketingRestService':
Cannot resolve reference to bean 'marketingRestService' while setting bean property 'ref';
查看一下ref的设置, 另外别忘了构造函数

可能是,marketingRestService的某个属性用了ref,,出错了,,把这个bean的配置文件贴出来,,瞅瞅

配置文件

 <dubbo:service interface="com.rjs.marketing.api.service.MarketingRestService" ref="marketingRestService"  protocol="rest" validation="true"/>
    <dubbo:service interface="com.rjs.marketing.api.service.EmployeeRestService" ref="employeeRestService"  protocol="rest" validation="true"/>
    <dubbo:service interface="com.rjs.marketing.api.service.ReturnVipFeeRestService" ref="returnVipFeeRestService"  protocol="rest" validation="true"/>

MarketingRestService的实现类是否声明了@Service beanName是不是与marketingRestService一致?

Error creating bean with name 'com.rjs.marketing.api.service.MarketingRestService':
不能注入,
看是不是没有加@Service,
配置文件包扫描扫描到了没有

是不是类型不能转换的原因?