日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

spring 通过EsClientFactory注入elasticsearch

發(fā)布時(shí)間:2024/9/16 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 spring 通过EsClientFactory注入elasticsearch 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

spring-es.xml

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"xmlns:mvc="http://www.springframework.org/schema/mvc"xsi:schemaLocation="http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-4.3.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-4.3.xsdhttp://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd "><context:component-scan base-package="com.es.esClientFactory" /><bean id="esConf" class="org.es.conf.EsConf"><constructor-arg value="master,slave,slave2" /><constructor-arg value="elasticsearch" /><constructor-arg value="9300" /> </bean> </beans>

EsClientFactory.java

package com.es.esClientFactory;import java.net.InetAddress; import java.net.UnknownHostException;import org.elasticsearch.client.Client; import org.elasticsearch.client.transport.TransportClient; import org.elasticsearch.common.settings.Settings; import org.elasticsearch.common.transport.InetSocketTransportAddress; import org.elasticsearch.transport.client.PreBuiltTransportClient; import org.es.conf.EsConf; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration;@Configuration public class EsClientFactory {@Autowiredprivate EsConf esConf;@Bean(name = "esClient")public Client getESClient() {Settings settings = Settings.builder().put("cluster.name", esConf.getClusterName()).build();Client client = new PreBuiltTransportClient(settings);for (String ip : esConf.getIps().split(",")) {try {((TransportClient) client).addTransportAddress(new InetSocketTransportAddress(InetAddress.getByName(ip), 9300));} catch (UnknownHostException e) {e.printStackTrace();}}return client;}}

EsServiceImpl.java

package org.taian.service.impl;import org.elasticsearch.action.get.GetResponse; import org.elasticsearch.client.Client; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Service;@Service public class EsServiceImpl {@Autowired @Qualifier("esClient")private Client client;public GetResponse testes(){GetResponse response = client.prepareGet("test", "t5", "285309").execute().actionGet();System.out.println(response.toString());System.out.println("configuration");System.out.println(response.getSourceAsString());return null;} }

ESContoller.java

package org.taian.web;import java.util.Date;import org.elasticsearch.action.get.GetResponse; import org.elasticsearch.action.search.SearchResponse; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.ResponseBody; import org.taian.service.ElasticsearchService; import org.taian.service.impl.EsServiceImpl; import org.taian.utils.HttpRequestUtil; import org.taian.utils.JSONUtils;import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject;@Controller @RequestMapping("/myes") public class ESController {private final Logger logger = LoggerFactory.getLogger(this.getClass());@AutowiredEsServiceImpl estest;@ResponseBody@RequestMapping(value="testes", method = { RequestMethod.GET, RequestMethod.POST }, produces="application/json")public JSONObject testes(){estest.testes();return JSON.parseObject("");} }

?

總結(jié)

以上是生活随笔為你收集整理的spring 通过EsClientFactory注入elasticsearch的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。