使用 jsoup 爬取京东数据, 并写入到 elasticsearch 中, 并根据关键字搜索高亮展示内容
- Spring Boot 2.2.5.RELEASE
- ElasticSearch 7.9.3
- Jsoup
- Vue.js
PUT /content
{
"mappings": {
"properties": {
"name":{
"type": "text",
"analyzer": "ik_smart"
},
"price":{
"type": "keyword",
"index": "false"
},
"image":{
"type": "keyword",
"index": "false"
}
}
}
}