elasticSearch启动时报错: Caused by: java.lang.IllegalArgumentException: mapper [logoUri] of different type, current_type [text], merged_type [keyword]
原因: 代码中的document映射实体中的logoUri字段类型为keyword,而索引库中的类型为text
解决办法: 进入索引库(可以使用kibana等工具进入),修改logoUri字段类型为keyword,再重新导入数据就可以了