当前位置: 首页>>代码示例>>Java>>正文


Java UpdateResponse.toString方法代码示例

本文整理汇总了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;
	}
 
开发者ID:dev-share,项目名称:css-elasticsearch,代码行数:18,代码来源:ElasticsearchHighRestFactory.java

示例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;
}
 
开发者ID:dev-share,项目名称:css-elasticsearch,代码行数:16,代码来源:ElasticsearchHighRestFactory.java

示例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;
}
 
开发者ID:dev-share,项目名称:css-elasticsearch,代码行数:15,代码来源:ElasticsearchTransportFactory.java

示例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;
}
 
开发者ID:dev-share,项目名称:css-elasticsearch,代码行数:16,代码来源:ElasticsearchTransportFactory.java


注:本文中的org.elasticsearch.action.update.UpdateResponse.toString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。