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;

 

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐