dubbo与webservice原生协议如何调用
在dubbo-user-book中,关于webservice协议,有这么一段描述:
可以和原⽣ WebService 服务互操作,即:
提供者⽤ Dubbo 的 WebService 协议暴露服务,消费者直接⽤标准 WebService 接⼝调⽤,
或者提供⽅⽤标准 WebService 暴露服务,消费⽅⽤ Dubbo 的 WebService 协议调⽤。
我的消费方是dubbo,但是提供方用的是标准的WebService 暴露服务,因此,我在dubbo-consumer.xml中是这么写的:<dubbo:reference id="INTBPublishCPEZService" interface="cn.com.git.pmp.quartz.webservice.INB_8076004.test.INTBPublishCPEZService" url="webservice://10.2.155.230:8080/cpez/service/INTBPublishCPEZService" check="true"/>
但是在代码中想调用service的时候,利用spring的@Autowired
标签注入,结果运行的时候是找不到的,注入的代码是:@Autowired
private INTBPublishCPEZService INTBPublishCPEZService;
报的错是:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'INTBPublishCPEZService': FactoryBean threw exception on object creation; nested exception is java.lang.NullPointerException
请问我的消费方具体应该怎么写呢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
引用来自“hzajie”的评论
Dubbo的接口协议与web service的接口协议不一致,
Dubbo的接口协议与web service的接口协议不一致,