您的位置:首页 > 编程语言 > Java开发

ElasticSearch(5)--使用Java客户端删除文档

2018-02-06 18:18 375 查看
使用Java客户端删除文档

package com.es.demo;

import java.net.InetAddress;

import org.elasticsearch.action.delete.DeleteResponse;
import org.elasticsearch.client.transport.TransportClient;
import org.elasticsearch.common.transport.InetSocketTransportAddress;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

/**
* 删除文档
*
* @author Beck
* @date 2018年2月6日
*/
public class TestES4 {
private static final String HOST = "127.0.0.1";
private static final int PORT = 9300;

private TransportClient client = null;

// 删除文档
@Test
public void deleteDocument(){
DeleteResponse response = this.client
.prepareDelete("eshop", "product", "AWFluEB6rUhLs_HfwSwu")
.get();
System.out.println(response.getVersion());
}

// 获取客户端
@Before
public void getClient() throws Exception{
client = TransportClient.builder()
.build()
.addTransportAddress(new InetSocketTransportAddress(InetAddress.getByName(HOST), PORT));
}

// 关闭客户端
@After
public void closeClient(){
if (this.client != null){
this.client.close();
}
}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: