How to integrate full-text search in Spring-data-jpa?

Is there a way to integrate full-text search with spring jpa data? I use sleeping search in my project.

Search in sleep mode (Hibernate Search brings the power of full-text search engines to the save domain model, combining Hibernate Core with the capabilities of the Apache Lucene ™ search engine.) It can work with traditional jpa correctly.

Now I will move on to jpa spring data. What is the best way to implement full-text search?

+5
source share
3 answers

Using Spring JPA data should not make any difference regarding the use of your domain model for indexing. This is a thin layer on top of the JPA to facilitate query execution.

+3
source

You might want to consider solr as described here.

+1
source

solrj spring, spring -data. , . , , .

+1

All Articles