项目场景:java.lang.IllegalStateException: Failed to execute ApplicationRunner
问题描述
在跑search服务实现ApplicationRunner接口的监听类时,出现Failed to execute ApplicationRunner这个错误文章来源:https://www.toymoban.com/news/detail-506826.html
文章来源地址https://www.toymoban.com/news/detail-506826.html
原因分析:
一开始以为是它调用的商品服务没启动,因为search服务调用的是商品这个服务,数据都在商品服务中,所以我先启动了product服务,再启动search服务,,发现还是同样的错误,在监听类打个断点,发现如果es不存在product这个索引的时候,服务正常执行,存在就报异常,所以删除es索引的时候,没有给对应的索引
解决方案:
在DeleteByQueryRequest queryRequest = new DeleteByQueryRequest();传入指定的索引字符串就解决了索引删除的问题
到了这里,关于java.lang.IllegalStateException: Failed to execute ApplicationRunner的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!