SpringBoot-spring-data-elasticsearch7.12.0

x33g5p2x  于2022-08-17 转载在 Spring  
字(9.6k)|赞(0)|评价(0)|浏览(599)

maven

注意springboot的版本一定要和elasticsearch和spring-boot-starter-data-elasticsearch的版本匹配,不然就会出现问题

  1. <properties>
  2. <maven.compiler.source>8</maven.compiler.source>
  3. <maven.compiler.target>8</maven.compiler.target>
  4. </properties>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.5.1</version>
  9. </parent>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-web</artifactId>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.elasticsearch</groupId>
  17. <artifactId>elasticsearch</artifactId>
  18. <version>7.12.0 </version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.apache.logging.log4j</groupId>
  26. <artifactId>log4j-to-slf4j</artifactId>
  27. <version>2.9.1</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.slf4j</groupId>
  31. <artifactId>slf4j-api</artifactId>
  32. <version>1.7.24</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.slf4j</groupId>
  36. <artifactId>slf4j-simple</artifactId>
  37. <version>1.7.21</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>log4j</groupId>
  41. <artifactId>log4j</artifactId>
  42. <version>1.2.12</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>junit</groupId>
  46. <artifactId>junit</artifactId>
  47. <version>4.12</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-starter-test</artifactId>
  52. <scope>test</scope>
  53. </dependency>
  54. </dependencies>

application.yml

  1. server:
  2. port: 9091
  3. spring:
  4. elasticsearch:
  5. rest:
  6. uris: 106.12.174.220:9200
  7. connection-timeout: 1s
  8. read-timeout: 30s

演示

Article

  1. package com.es.entity;
  2. import org.springframework.data.annotation.Id;
  3. import org.springframework.data.elasticsearch.annotations.Document;
  4. import org.springframework.data.elasticsearch.annotations.Field;
  5. import org.springframework.data.elasticsearch.annotations.FieldType;
  6. //@Document 文档对象 (索引信息、文档类型 )
  7. @Document(indexName="blog3")
  8. public class Article {
  9. //@Id 文档主键 唯一标识
  10. @Id
  11. //@Field 每个文档的字段配置(类型、是否分词、是否存储、分词器 )
  12. @Field(store=true, index = false,type = FieldType.Integer)
  13. private Integer id;
  14. @Field(index=true,analyzer="ik_smart",store=true,searchAnalyzer="ik_smart",type = FieldType.Text)
  15. private String title;
  16. @Field(index=true,analyzer="ik_smart",store=true,searchAnalyzer="ik_smart",type = FieldType.Text)
  17. private String content;
  18. @Field(index=true,store=true,type = FieldType.Double)
  19. private Double price;
  20. public Double getPrice() {
  21. return price;
  22. }
  23. public void setPrice(Double price) {
  24. this.price = price;
  25. }
  26. public Integer getId() {
  27. return id;
  28. }
  29. public void setId(Integer id) {
  30. this.id = id;
  31. }
  32. public String getTitle() {
  33. return title;
  34. }
  35. public void setTitle(String title) {
  36. this.title = title;
  37. }
  38. public String getContent() {
  39. return content;
  40. }
  41. public void setContent(String content) {
  42. this.content = content;
  43. }
  44. @Override
  45. public String toString() {
  46. return "Article{" +
  47. "id=" + id +
  48. ", title='" + title + '\'' +
  49. ", content='" + content + '\'' +
  50. ", price=" + price +
  51. '}';
  52. }
  53. }

ArticleRepository

  1. package com.es.dao;
  2. import com.es.entity.Article;
  3. import org.springframework.data.elasticsearch.annotations.Highlight;
  4. import org.springframework.data.elasticsearch.annotations.HighlightField;
  5. import org.springframework.data.elasticsearch.annotations.HighlightParameters;
  6. import org.springframework.data.elasticsearch.core.SearchHit;
  7. import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
  8. import org.springframework.stereotype.Repository;
  9. import java.util.List;
  10. @Repository
  11. public interface ArticleRepository extends ElasticsearchRepository<Article, Integer> {
  12. /**
  13. * 查询内容标题查询
  14. * @param title 标题
  15. * @param content 内容
  16. * @return 返回关键字高亮的结果集
  17. */
  18. @Highlight(
  19. fields = {@HighlightField(name = "title"), @HighlightField(name = "content")},
  20. parameters = @HighlightParameters(preTags = {"<span style='color:red'>"}, postTags = {"</span>"}, numberOfFragments = 0)
  21. )
  22. List<SearchHit<Article>> findByTitleOrContent(String title, String content);
  23. }

ArticleService

  1. package com.es.service;
  2. import com.es.entity.Article;
  3. import org.springframework.data.elasticsearch.core.SearchHit;
  4. import java.util.List;
  5. public interface ArticleService {
  6. //保存和修改
  7. void save(Article article);
  8. //查询id
  9. Article findById(Integer id);
  10. //删除指定ID数据
  11. void deleteById(Integer id);
  12. long count();
  13. boolean existsById(Integer id);
  14. List<SearchHit<Article>> findByTitleOrContent(String title, String content);
  15. }

ArticleServiceImpl

  1. package com.es.service.impl;
  2. import com.es.dao.ArticleRepository;
  3. import com.es.entity.Article;
  4. import com.es.service.ArticleService;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.data.elasticsearch.core.SearchHit;
  7. import org.springframework.stereotype.Service;
  8. import java.util.List;
  9. @Service
  10. public class ArticleServiceImpl implements ArticleService {
  11. @Autowired
  12. private ArticleRepository articleRepository;
  13. @Override
  14. public void save(Article article) {
  15. articleRepository.save(article);
  16. }
  17. @Override
  18. public Article findById(Integer id) {
  19. Article article = articleRepository.findById(id).orElse(new Article());
  20. return article;
  21. }
  22. @Override
  23. public void deleteById(Integer id) {
  24. articleRepository.deleteById(id);
  25. }
  26. @Override
  27. public long count() {
  28. return articleRepository.count();
  29. }
  30. @Override
  31. public boolean existsById(Integer id) {
  32. return articleRepository.existsById(id);
  33. }
  34. @Override
  35. public List<SearchHit<Article>> findByTitleOrContent(String title, String content) {
  36. return articleRepository.findByTitleOrContent(title,content);
  37. }
  38. }

ESApplication

  1. package com.es;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class ESApplication {
  6. public static void main(String[] args) {
  7. SpringApplication.run(ESApplication.class,args);
  8. }
  9. }

SpringDataESTest

  1. package com.es;
  2. import com.es.entity.Article;
  3. import com.es.service.ArticleService;
  4. import org.elasticsearch.client.transport.TransportClient;
  5. import org.junit.Test;
  6. import org.junit.runner.RunWith;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.boot.test.context.SpringBootTest;
  9. import org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate;
  10. import org.springframework.data.elasticsearch.core.ElasticsearchTemplate;
  11. import org.springframework.data.elasticsearch.core.SearchHit;
  12. import org.springframework.test.context.junit4.SpringRunner;
  13. import javax.annotation.Resource;
  14. import java.util.List;
  15. @RunWith(SpringRunner.class)
  16. @SpringBootTest(classes = ESApplication.class, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT)
  17. public class SpringDataESTest {
  18. @Autowired
  19. private ArticleService articleService;
  20. @Autowired
  21. private ElasticsearchRestTemplate elasticsearchRestTemplate;
  22. /**创建索引和映射*/
  23. @org.junit.Test
  24. public void createIndex(){
  25. // elasticsearchTemplate.createIndex(Article.class);
  26. // elasticsearchTemplate.putMapping(Article.class);
  27. }
  28. /**添加文档或者修改文档(以id为准)*/
  29. @Test
  30. public void saveArticle(){
  31. Article article = new Article();
  32. article.setId(102);
  33. article.setTitle("xxxxxxSpringData ElasticSearch-------");
  34. article.setContent("Spring Data ElasticSearch 基于 spring data API 简化 elasticSearch操作,将原始操作elasticSearch的客户端API 进行封装 \n" +
  35. " Spring Data为Elasticsearch Elasticsearch项目提供集成搜索引擎");
  36. articleService.save(article);
  37. }
  38. @Test
  39. public void findById(){
  40. Article byId = articleService.findById(100);
  41. System.out.println(byId);
  42. }
  43. @Test
  44. public void deleteById(){
  45. articleService.deleteById(100);
  46. }
  47. @Test
  48. public void count(){
  49. long count = articleService.count();
  50. System.out.println(count);
  51. }
  52. @Test
  53. public void existsById(){
  54. boolean b = articleService.existsById(102);
  55. System.out.println(b);
  56. }
  57. @Test
  58. public void findByTitleOrContent(){
  59. List<SearchHit<Article>> byTitleOrContent = articleService.findByTitleOrContent("xxxxxxSpringData","elasticSearch");
  60. for (SearchHit<Article> articleSearchHit : byTitleOrContent) {
  61. List<String> title = articleSearchHit.getHighlightField("title");
  62. System.out.println(title);
  63. List<String> content = articleSearchHit.getHighlightField("content");
  64. System.out.println(content);
  65. }
  66. }
  67. }

自定义查询方式

关键字解释方法
and根据Field1和Field2获得数据findByTitleAndContent(String title,String content);
or根据Field1或Field2获得数据findByTitleOrContent(String title,String content);
is根据Field获得数据findByTitle(String title);
not根据Field获得相反数据findByTitleNot(String title)
between获得指定范围的数据findByPriceBetween(double price1, double price2);
lessThanEqual获得小于等于指定值的数据findByPriceLessThan(double price);
GreaterThanEqual获得大于等于指定值的数据findByPriceGreaterThan(double price);
BeforefindByPriceBefore
AfterfindByPriceAfter
Like比较相识的数据findByNameLike
StartingWith以xx开头的 数据findByNameStartingWith(String Name);
EndingWith以xx结尾的 数据findByNameEndingWith(String Name);
Contains/Containing包含的 数据findByNameContaining(String Name);
In多 值匹配findByNameIn(Collection<String>names)
NotIn多 值 不匹配findByNameNotIn(Collection<String>names)
OrderBy排序 后的数据findByxxxxxOrderByNameDesc(String xxx );

比如: findByTitleAndContent 如果你的表中没有title字段和content那么就无效这个方法
列: List<Article> findByTitleAndContent(String title,String content);

获得指定范围的数据: 方法 findByPriceBetween
列: List<Article> findByPriceBetween(double price1, double price2);

获得小于等于指定值的数据
列: List<Article> findByPriceLessThan(double price);

点赞 -收藏-关注-便于以后复习和收到最新内容有其他问题在评论区讨论-或者私信我-收到会在第一时间回复在本博客学习的技术不得以任何方式直接或者间接的从事违反中华人民共和国法律,内容仅供学习、交流与参考免责声明:本文部分素材来源于网络,版权归原创者所有,如存在文章/图片/音视频等使用不当的情况,请随时私信联系我、以迅速采取适当措施,避免给双方造成不必要的经济损失。感谢,配合,希望我的努力对你有帮助^_^

相关文章