failed to load elasticsearch nodes : org.elasticsearch.client
.transport.NoNodeAvailableException: None of the configured
nodes are available: [{#transport#-1}{u87nxddtTH-kwSi1NLVAyg}
{127.0.0.1}{127.0.0.1:9200}]
今天在学习mall项目时配置Elasticsearch遇到上面这个问题,由于作者SpringBoot使用的是2.1.3版本,使用起步依赖导入的ES版本是6.3.4。而我使用的ES版本是7.6.1,如是我将起步依赖的ES版本改为7.6.1。改完后再启动发现抛出上面这个错误,最后确认是使用的SpringData版本与ElasticSearch版本不匹配导致的,ElasticSearch7需要使用SpringData ElasticSearch4以上版本,于是将spring-data-elasticsearch的版本改为4.0.2,功能正常。