使用postman操作ElasticSearch

下载安装好postman之后

添加索引blog1(因为ElasticSearch是restful请求所以我们用postman发送http请求给ElasticSearch)

{
“mappings”:{
“article”:{
“properties”:{
“id”:{
“type”:“long”,
“store”:“true”,
“index”:“true”
},
“title”:{
“type”:“text”,
“store”:“true”,
“index”:“true”,
“analyzer”:“standard”
},
“context”:{
“type”:“text”,
“store”:“true”,
“index”:“true”,
“analyzer”:“standard”
}
}
}
}

}

响应成功

你可能感兴趣的:(java,elasticsearch,postman,大数据,maven,java)