ElasticSearch在Springboot中的两种实现方式

1、jest

使用Maven依赖

		<dependency>
			<groupId>io.searchbox</groupId>
			<artifactId>jest</artifactId>
			<version>5.3.3</version>
		</dependency>

测试

使用注解

	@Autowired
	JestClient jestClient;

//添加数据
	@Test
	void contextLoads() throws IOException {
		User user=new User();
		user.setId(1);
		user.setGenter(1);
		user.setUserName("lhs");
		user.setAddress("nanchang");
		Index build = new Index.Builder(user).index("nanchang").type("student").build();

		jestClient.execute(build);


	}

//进行搜索,搜索匹配到last_name为Smith的数据
	@Test
	void testQuery() throws IOException {
		String query="{\n" +
				"    \"query\" : {\n" +
				"        \"match\" : {\n" +
				"            \"last_name\" : \"Smith\"\n" +
				"        }\n" +
				"    }\n" +
				"}";
		Search build = new Search.Builder(query).addIndex("nanchang").addType("student").build();

		SearchResult execute = jestClient.execute(build);

		System.out.println(execute);

	}

2、使用spring-boot-starter-data-elasticsearch实现

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

实现接口

public interface BookRepository extends ElasticsearchRepository {

     public  List<Book> findByBookNameLike(String bookName);

}

	@Autowired
	BookRepository bookRepository;
//添加数据
@Test
	void addElasticSearch(){
	    Book book=new Book();
	   /* book.setBookId(1);
	    book.setBookName("三国演义");
        book.setBookNo(10);*/
        bookRepository.index(book);
    }

//查找
    @Test
    void searchBook(){
        List<Book> listBook = bookRepository.findByBookNameLike("三");
        for(Book book1:listBook){
            System.out.println(book1);
        }
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值