Elastic 开发篇(3)

1、报错: java.lang.NoSuchFieldError: FAIL_ON_SYMBOL_HASH_OVERFLOW

原因:

系统中已引入jackson版本,但版本较低,缺少所需要的字段。

解决:

在pom.xml中重新添加jackson高版本的依赖:

<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.9.7</version>
</dependency>

  

2、报错:NoNodeAvailableException[None of the configured nodes are available

原因:端口错误,写成9200了,应该是9300?

上一篇:hdu 2050:折线分割平面(水题,递归)


下一篇:Finding awesome developers in programming interviews(转)