這篇介紹elasticsearch java lang nosuch method error org apache http client utils urlencodedutils formatsegments。
發生情境
1 2 3 4
| 使用 Java Low Level REST Client建立連線時,並使用Search方法時 出現elasticsearch java lang nosuch method error org apache http client utils urlencodedutils formatsegments 錯誤
|
解決方法
1 2 3 4 5 6 7 8 9 10 11 12
| <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.3</version> </dependency> 需升級 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.13</version> </dependency> 即可正常使用
|