elasticsearch 接口简单使用

目录

一、启动es

1.1 启动

1.2 访问测试

二、es接口测试

2.1 创建索引并创建Mapping

2.2 添加文档

2.3 检索


一、启动es

1.1 启动

进入 elasticsearch-8.11.3\bin 目录下 启动 elasticsearch.bat

elasticsearch 接口简单使用_第1张图片 

1.2 访问测试

浏览器访问 http://localhost:9200/ 有输出则启动成功

elasticsearch 接口简单使用_第2张图片

二、es接口测试

2.1 创建索引并创建Mapping

请求地址:http://localhost:9200/test2

请求方式:put

Body:

{
  "mappings": {
      "properties": {
        "id": {
          "type": "long",
          "store": true
        },
        "title": {
          "type": "text",
          "store": true,
          "analyzer":"standard"
        },
        "content": {
          "type": "text",
          "store": true,
          "analyzer":"standard"
        } 
      }
  }
}

2.2 添加文档

请求地址:http://localhost:9200/test2/_doc/1

请求方式:put

Body:

{
    "id":1,
    "title":"title1",
    "content":"This is a text about el testing"
}

 

2.3 检索

请求地址:http://localhost:9200/test2/_search

请求方式:get

Body(检索所有):

{
  "query": {
    "query_string": {
      "query": "is"
    }
  }
}

 Body(仅检索 content):

{
  "query": {
    "query_string": {
      "fields": ["content"],
      "query": "is"
    }
  }

你可能感兴趣的:(大数据,Java,SpringCloud,elasticsearch,大数据,搜索引擎,开发语言,全文检索,spring,cloud,spring,boot)