Closed qq644531343 closed 3 years ago
路径: [root@localhost elasticsearch-7.10.0]# ls plugins/elasticsearch-analysis-ik-7.10.0/ commons-codec-1.9.jar httpclient-4.5.2.jar commons-logging-1.2.jar httpcore-4.4.4.jar config plugin-descriptor.properties elasticsearch-analysis-ik-7.10.0.jar plugin-security.policy
通过googlechrome head插件查询, 是正确的,通过 浏览器或postman 发get请求就是unicode
` POST 192.168.0.64:9200/shop/_mapping { "properties" : { "id":{ "type":"long" }, "age":{ "type":"integer" }, "username":{ "type":"keyword" }, "nickname":{ "type":"text", "analyzer":"ik_max_word" }, "money":{ "type":"float" }, "desc":{ "type":"text", "analyzer":"ik_smart" }, "sex": { "type":"byte" }, "birthday": { "type": "date" }, "face": { "type":"text", "index":false } } }
`
7.10.0版本, es和ik版本对应,机器是centos7 加了插件后,返回值: HTTP/1.1 200 OK content-type: application/json; charset=UTF-8 content-length: 223
{"_index":"my_doc","_type":"_doc","_id":"1","_version":1,"_seq_no":0,"_primary_term":1,"found":true,"_source":{"id":1001,"name":"imooc-1","desc":"imooc is very Good. \u975e\u5e38\u725b","create_date":"2019-01-01 11:12:00"}}
没加的返回值: {"_index":"my_doc","_type":"_doc","_id":"uFrOSnYBi7h7FdDJJpvu","_version":2,"_seq_no":5,"_primary_term":1,"found":true,"_source":{"id":1003,"name":"我是慕课网","desc":"今天天气很好,去imooc上课","create_date":"2019-01-01 12:12:00"}}