3分钟SpringData整合ElasticSearch

        ⭐️秋日的晚霞⭐️

    ⭐️玲珑骰子安红豆 入骨相思知不知⭐️

💋 如果对你有帮助,给博主一个免费的点赞 💋
👋 博客主页🎉 秋日的晚霞
⭐️ 更多文章 请关注主页 📝
👋 一起走上java学习之路!
🎄 欢迎各位🔎点赞👍评论收藏⭐️ 🎄

1.导入依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
            <version>2.6.4</version>
        </dependency>

2.配置 yml

spring:
  elasticsearch:
    rest:
      uris:
        - http://xxxxx:9200

3.创建Bean

  1. @Document( indexName= xxx) ES 的索引名
  2. @Id ES 的文档ID
  3. @Field ES的字段映射
    1. type = FieldType.Keyword 关键字 不分词 ( ES中没有String 只有 text (分词) 和 keyword ( 不分词 )
    2. index 是否能索引
    3. analyzer 使用的分词器
    4. format 格式转换 pattern 日期格式
    5. FieldType.Nested 集合属性 避免查出业务错误
@Document(indexName = "goods" , shards = 3,replicas = 2)
public class Goods {
    // 商品Id skuId
    @Id
    private Long id;

    @Field(type = FieldType.Keyword, index = false)
    private String defaultImg;

    //  es 中能分词的字段,这个字段数据类型必须是 text!keyword 不分词!
    @Field(type = FieldType.Text, analyzer = "ik_max_word")
    private String title;

    @Field(type = FieldType.Double)
    private Double price;

    //  @Field(type = FieldType.Date)   6.8.1
    @Field(type = FieldType.Date,format = DateFormat.custom,pattern = "yyyy-MM-dd HH:mm:ss")
    private Date createTime; // 新品

    @Field(type = FieldType.Long)
    private Long tmId;

    @Field(type = FieldType.Keyword)
    private String tmName;

    @Field(type = FieldType.Keyword)
    private String tmLogoUrl;

    @Field(type = FieldType.Long)
    private Long category1Id;

    @Field(type = FieldType.Keyword)
    private String category1Name;

    @Field(type = FieldType.Long)
    private Long category2Id;

    @Field(type = FieldType.Keyword)
    private String category2Name;

    @Field(type = FieldType.Long)
    private Long category3Id;

    @Field(type = FieldType.Keyword)
    private String category3Name;

    //  商品的热度! 我们将商品被用户点查看的次数越多,则说明热度就越高!
    @Field(type = FieldType.Long)
    private Long hotScore = 0L;

    // 平台属性集合对象
    // Nested 支持嵌套查询
    @Field(type = FieldType.Nested)
    private List<SearchAttr> attrs;

}

4.创建接口继承 CrudRepository 接口

泛型1 : ES对应的javaBean

泛型2 : 文档唯一ID的类型

@Repository
public interface GoodsDao extends CrudRepository<Goods,Long> {


}

注意 如果想实现分页 请实现 PagingAndSortingRepository 接口

@Repository
public interface GoodsDao extends PagingAndSortingRepository<Goods,Long> {


}

接口上添加 @Repository 注解

5. 创建service 注入 接口代理类对象

@Service
public class GoodsServiceImpl implements GoodService {

    @Autowired
    private GoodsDao goodsDao;

    @Override
    public boolean onSale(Goods goods) {

        Goods save = goodsDao.save(goods);

       return !StringUtils.isEmpty(save);

    }

}

6.主启动类上添加 @EnableElasticsearchRepositories

@EnableElasticsearchRepositories
@SpringCloudApplication
public class EsListApp {

    public static void main(String[] args) {
        SpringApplication.run(EsListApp.class);
    }

}

7.编写方法名

小提示 先写返回值类型 这样有提示

idea64_vJZvPkhh48

命名规则 Spring Data Commons - 参考文档

#java求职##学习路径#
全部评论

相关推荐

断电再接线:1. 简历排版方面,你这内容比较少,一页放完。各模块之间建议用明显的分隔线分开,现在一眼看上去非常乱。教育经历留白太多。项目经历格式不统一。 2. 第一个项目,硬件设计太笼统,硬件架构规划是指板级电路设计还是FPGA逻辑设计?FPGA时序逻辑设计具体指的什么?实现的三个低速协议以及使用协议进行控制时序,是指什么? 3. 第二个项目,我觉得你可以和第一个项目整合一下,合并为一个项目。第二个项目说实话随便买个zynq开发板都有一直petalinux的教程,作为一个独立的项目不合适的,更像是一个小作业。 4. 第三个项目,项目内容这里,其实和环境搭建之类的东西提一嘴就好了,环境准备和编译安装工具链这种东西没多大必要写,实在要写的话可以 说 使用docker 独立sdk环境之类的。你说的这个工具我没用过,我用的比较多的是busybox和buildroot,是基于menuconfig进行配置的,如果scratch也是类似的模式的话,那我觉得这个项目也经不起细推。你可以往内核裁剪那方向靠,我说的这两个工具你也可以看看。 5. 你熟悉这些接口时序的话,你可以进一步去看一下驱动开发,然后面试的时候突出这个作为重点。第三个项目也可以将驱动开发给补充进去。因为单编内核和构建文件系统,其实很多时候是体力劳动。 6. 特长这里,独立成一个荣誉奖项的模块,把你获得的奖学金和竞赛奖项放一起。数模的话,写了国赛,美赛就不用写了。 7. 总的来说可以了,你简历上写的东西你只要都熟悉,找个实习还是没问题的。 8. 嵌入式分为硬件,底层软件和应用软件,看你的经历我建议你往底层靠,多去熟悉常用的通信接口,去看内核和驱动,网络编程这块也可以去了解一下。然后去**刷刷hot100
点赞 评论 收藏
分享
2024-12-09 12:21
门头沟学院 C++
l11hy:今早刚开,已满足
点赞 评论 收藏
分享
评论
1
5
分享
牛客网
牛客企业服务