本文整理汇总了Java中org.elasticsearch.action.update.UpdateResponse.toString方法的典型用法代码示例。如果您正苦于以下问题:Java UpdateResponse.toString方法的具体用法?Java UpdateResponse.toString怎么用?Java UpdateResponse.toString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.elasticsearch.action.update.UpdateResponse
的用法示例。
在下文中一共展示了UpdateResponse.toString方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: upsert
import org.elasticsearch.action.update.UpdateResponse; //导入方法依赖的package包/类
public String upsert(String index,String type,String id,Object json){
try {
if(xclient==null){
init();
}
// IndexRequest indexRequest = new IndexRequest(index, type, id).source(json,XContentType.JSON);
// UpdateRequest updateRequest = new UpdateRequest(index, type, id).doc(json,XContentType.JSON).upsert(indexRequest);
UpdateRequest request = new UpdateRequest(index, type, id);
request.upsert(JSON.parseObject(JSON.toJSONString(json)),XContentType.JSON);
UpdateResponse response = xclient.update(request);
return response.toString();
}catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
示例2: update
import org.elasticsearch.action.update.UpdateResponse; //导入方法依赖的package包/类
public String update(String index,String type,String id,Object json){
try {
if(xclient==null){
init();
}
UpdateRequest request = new UpdateRequest(index, type, id);
request.doc(JSON.parseObject(JSON.toJSONString(json)),XContentType.JSON);
UpdateResponse response = xclient.update(request);
return response.toString();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
示例3: update
import org.elasticsearch.action.update.UpdateResponse; //导入方法依赖的package包/类
public String update(String index,String type,String id,Object json){
try {
if(client==null){
init();
}
UpdateResponse result = client.prepareUpdate(index, type, id).setDoc(JSON.parseObject(JSON.toJSONString(json)),XContentType.JSON).execute().actionGet();
System.out.println(JSON.toJSONString(result));
return result.toString();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}
示例4: upsert
import org.elasticsearch.action.update.UpdateResponse; //导入方法依赖的package包/类
public String upsert(String index,String type,String id,Object json){
try {
if(client==null){
init();
}
IndexRequest indexRequest = new IndexRequest(index, type, id).source(JSON.parseObject(JSON.toJSONString(json)),XContentType.JSON);
UpdateRequest updateRequest = new UpdateRequest(index, type, id).doc(JSON.parseObject(JSON.toJSONString(json)),XContentType.JSON).upsert(indexRequest);
UpdateResponse result = client.update(updateRequest).get();
return result.toString();
}catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return null;
}