dubbo微服务启动失败原因汇总
1.Current Spring Boot Application is await... 原因:a) 缺少"org.springframework.web.bind.annotation"相关包。 b) 检查代码如果代码没有报错,那就是本服务引用了所依赖服务的此包。在本服务的POM文件中依赖此包即可。 2.明显看出由于连接不上依赖的服务,而导致本
·
1.Current Spring Boot Application is await...
原因:a) 缺少"org.springframework.web.bind.annotation"相关包。
b) 检查代码如果代码没有报错,那就是本服务引用了所依赖服务的此包。在本服务的POM文件中依赖此包即可。
2.明显看出由于连接不上依赖的服务,而导致本服务启动失败
原因:a) 检查dubbo配置文件的注册地址是否和zookeeper启动地址一致。
3.Bean named 'mongo' is expected to be of type 'com.*.*' but was actually of type 'com.mongodb.MongoClient'
原因:a) 在注入mongo相关bean类的时候,要注意注解的使用:
@Resource(name = "alertImageMongo")
private AlertImageMongo mongo;
@Autowired
private AlertImageMongo mongo;
更多推荐
已为社区贡献1条内容
所有评论(0)