目录
前言:
这个当初设计以及迁移到新的平台,此时逻辑废弃所以在这里记录下
主要实现CURD的工具类
@Component
public class EsManager {
@Autowired
private RestTemplate restTemplate;
@Value("${elasticsearch.url}")
private String esUrl;
@Autowired
private SynonymsService synonymsService;
public List<EsData> query(String esIndex, String esIndexProperty, String word) {
HttpHeaders headers = new HttpHeaders();
headers.add("content-type", "application/json");
String postBody = "{\"query\":{\"term\":{\"" + esIndexPrope