欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Elasticsearch-MySQL数据导入到Elasticsearch中

程序员文章站 2022-06-11 11:58:29
...

MySQL数据导入到Elasticsearch中

Elasticsearch-安装与配置

Elasticsearch-SpringBoot整合Elasticsearch

使用IK分词器实现搜索

限制Elasticsearch返回的结果集大小

网上有很多工具可以让MySQL与Elasticsearch同步。笔者这里没有使用工具,直接通过查询MySQL然后将数据导入Elasticsearch中。因为目前MySQL中数据不多,大概一千多行记录。
实体类

//题目id
@Id
private String problemId;
private String knowledgePoint;
//题目标题
@Field(type = FieldType.Text, searchAnalyzer = "ik_smart", analyzer = "ik_max_word")
private String title;
//出版社
private String publish;
//题目图片名字
private String problemPictureName;
//答案图片名字
private String answerPictureName;
//热度
private int hotPoint;
@Component
public interface SearchMapper {
    public List<Problem>getAll();
}
@GetMapping("/transfer")
   public void transfer(){
       List<Problem> list=service.getAll();
       problemRepository.saveAll(list);
   }