其他分享
首页 > 其他分享> > dubbox消费者访问报错

dubbox消费者访问报错

作者:互联网

首先看报错代码

严重: StandardWrapper.Throwable
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userController' defined in file [C:\zookeeperMinDemo\dubboxdemo-web\target\classes\cn\itcast\dubbooxdemo\controller\UserController.class]: Initialization of bean failed; nested exception is org.springframework.beans.factory.BeanInitializationException: Failed to init remote service reference at filed userService in class cn.itcast.dubbooxdemo.controller.UserController; nested exception is java.lang.IllegalStateException: Failed to check the status of the service cn.itcast.dubbooxdemo.service.UserService. No provider available for the service cn.itcast.dubbooxdemo.service.UserService from the url zookeeper://111.111.111.111:2181/com.alibaba.dubbo.registry.RegistryService?application=dubboxdemo-web&dubbo=2.8.4&interface=cn.itcast.dubbooxdemo.service.UserService&methods=getName&pid=5552&side=consumer&timestamp=1561801842894 to the consumer 222.222.222.222 use dubbo version 2.8.4

解决方法

    说明这只是解决方法之一,引起这个错误的原因应该还有很多

消费者和提供者的web.xml文件中的

<dubbo:annotation package="cn.itcast.dubboxdemo.controller"></dubbo:annotation>

package中的注解内容应该相同。不相同就会报错。挺奇怪但是事实如此

标签:web,dubbooxdemo,itcast,cn,service,访问,dubbox,报错,UserService
来源: https://blog.csdn.net/kjfdjjvbmc/article/details/94183458