考虑使用try-with-resources来管理client的生命周期RestHighLevelClientclient=newRestHighLevelClient(/* 客户端配置 */);ElasticsearchExampleexample=newElasticsearchExample(client);longcount=example.getDocumentCount("your_index_name");System.out.println("索引库 'your_index_name' 中的文档数量为: "+count);/...
1、查看当前节点的所有的index 查看当前节点的所有的index [root@es1 ~]# curl -X GET 'http://10.87.6.2:9200/_cat/indices?v' health status index uuid pri rep docs.count docs.deleted store.size pri.store.size green open students Btx9nIaLQ1GnVqy5ncbipg 5 1 6 0 48kb 24kb 1. 2. 3. 4...
driver-callss-name: 为jdbc的位置 url: 要连接的数据库和一些配置 username: 数据库的用户名 password: 数据库的密码 在pojo文件下创建实体类User import lombok.Data; import java.util.Date; @Data public class User { private String name; private String Gender; private String address; private String Te...