Java操作ElasticSearch
2019-09-08 09:47:32来源:博客园 阅读 ()
Java操作ElasticSearch
# ##java客户端连接到ElasticSearch服务器
创建maven工程 添加坐标 最好跟服务器elasticsearch一致
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>6.2.4</version>
</dependency>
<dependency>
<groupId>net.sf.json-lib</groupId>
<artifactId>json-lib</artifactId>
<version>2.4</version>
<classifier>jdk15</classifier>
</dependency>
# ## 获取TransportClient
java程序连接elasticsearch通过TransportClient类
TransportClient类是一个抽象类 具体的实现是PreBulitTransportClient
public class TestEs {
private static String host="192.168.88.133"; // 服务器地址
private static int port=9300; // 端口
/**
* 创建客户端连接到elasticsearch服务器
*/
@Test
public void teseConnection() throws Exception{
TransportClient client = new PreBuiltTransportClient(Settings.EMPTY);
client .addTransportAddress(new TransportAddress(InetAddress.getByName(TestEs.host), TestEs.port));
System.out.println(client);
client.close();
}
}
public class TestEs { private static String host="192.168.88.133"; // 服务器地址 private static int port=9300; // 端口 private TransportClient client=null; /** * 获取连接 * @return */ @Before public void getCient()throws Exception{ client = new PreBuiltTransportClient(Settings.EMPTY) .addTransportAddress(new TransportAddress(InetAddress.getByName(TestEs.host), TestEs.port)); System.out.println(client); } /** * 关闭连接 * @param client */ @After public void close(){ if(client!=null){ client.close(); } } /** * 添加索引 */ @Test public void testAdd()throws Exception{ IndexResponse response =client.prepareIndex("hello", "es", "1") .setSource(XContentFactory.jsonBuilder() .startObject() .field("name", "zhangsan") .field("birthday", new Date()) .field("age", 20) .endObject() ) .get(); System.out.println("索引名称:"+response.getIndex()); System.out.println("类型:"+response.getType()); System.out.println("文档ID:"+response.getId()); // 第一次使用是1 System.out.println("当前实例状态:"+response.status()); } }
ElasticSearch提供了根据索引名称,类别,文档ID来获取数据
@Test public void testGet(){ GetResponse getResponse=client.prepareGet("hello", "es", "1").get(); System.out.println(getResponse.getSourceAsString()); }
ElasticSearch提供了根据索引名称 类别 文档ID来修改数据 修改的设置数据可以是Map son串等
@Test public void testUpdate() { Map<String, Object> map = new HashMap<String, Object>(); map.put("name", "lisi"); map.put("birthday", new Date()); map.put("age", "25"); UpdateResponse response = client.prepareUpdate("hello", "es", "1").setDoc(map).get(); System.out.println("索引名称:" + response.getIndex()); System.out.println("类型:" + response.getType()); System.out.println("文档ID:" + response.getId()); // 第一次使用是1 System.out.println("当前实例状态:" + response.status()); }
ElasticSearch提供了根据索引名称 类别 文档ID来删除数据
@Test public void testDelete(){ DeleteResponse response=client.prepareDelete("hello", "es", "1").get(); System.out.println("索引名称:"+response.getIndex()); System.out.println("类型:"+response.getType()); System.out.println("文档ID:"+response.getId()); // 第一次使用是1 System.out.println("当前实例状态:"+response.status()); }
原文链接:https://www.cnblogs.com/renxixao/p/11470424.html
如有疑问请与原作者联系
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 国外程序员整理的Java资源大全(全部是干货) 2020-06-12
- 2020年深圳中国平安各部门Java中级面试真题合集(附答案) 2020-06-11
- 2020年java就业前景 2020-06-11
- 04.Java基础语法 2020-06-11
- Java--反射(框架设计的灵魂)案例 2020-06-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash