hibernate-search Questions
3
Solved
I am using Hibernate Fulltext search. I am currently using:
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-search</artifactId>
<version>...
Jillene asked 18/9, 2014 at 21:40
2
Solved
æ, ø, å are latest letters in the norwegian alphabet
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z Æ Ø Å
When we try to sort it using Hibernate Lucene then Å clubs with A, Ø clubs with Ø,...
Fadge asked 1/9, 2016 at 6:40
3
Solved
I upgraded Hibernate search from version - 4.3.0.Final to the latest stable version - 5.4.12.Final. All is good except sorting norwegian words. In the old version of hibernate there was SortField w...
Porfirioporgy asked 16/3, 2020 at 9:38
1
Solved
public class Product {
private Long id;
private String name;
private String description;
}
Is there any way to implement a full text search with JpaRepository for the description of the c...
Jackanapes asked 27/8, 2019 at 22:35
1
Solved
We are using Hibernate Search 5.10.3.Final against Elasticsearch 5.6.6 server.
The connection between our app and ES seems solid when issuing FullTextQueries directly, maybe b/c HibernateSearch ha...
Trillion asked 25/10, 2018 at 20:34
1
I am trying to integrate Hibernate Search into my Spring boot application and I keep getting the following error every time I try to use the @Indexed (org.hibernate.search.annotations.Indexed) anno...
Thorn asked 1/8, 2018 at 19:25
5
I am currently looking into converting a single-tenant Java based web-app that uses Spring, GWT, Hibernate, Jackrabbit, Hibernate Search / Lucene (among others) into a fully fledged SaaS style app....
Hellfire asked 28/3, 2011 at 15:39
1
Solved
I'm configuring Hibernate Search 5.5.5 to use Infinispan 8.2.2 on Wildfly 10.
I configured only the Infinispan module in Wildfly, not the Hibernate Search module.
Inside the persistence.xml I put...
Wesleyanism asked 22/12, 2017 at 10:6
1
I have a spring boot, Spring Data JPA (hibernate) web application and want to introduce text search feature.
I understand the following
Both hibernate search or spring-data-* can be integrated ...
Erythrocyte asked 21/12, 2017 at 5:31
2
Solved
I have hibernate search set-up and it's (re-)indexing my annotated entities up on commit just fine.
But I have a number of integration tests which have only partially initilzed data. Since this is...
Incision asked 6/8, 2015 at 8:2
4
I learned and understood that Elasticsearch, Apache Solr and Hibernate Search are based on the Apache Lucene library. They provide fast full-text search and all of them either use JPA annotations, ...
Liquefy asked 16/1, 2014 at 23:24
3
Solved
Novice on Lucene here.
I'm using it with Hibernate in a java client, and have been getting this error on a particular query:
HSEARCH000146: The query string 'a' applied on field 'name' has no mea...
Porky asked 7/12, 2012 at 15:6
4
Solved
I'm learning the Hibernate Search Query DSL, and I'm not sure how to construct queries using boolean arguments such as AND or OR.
For example, let's say that I want to return all person records t...
Gigahertz asked 19/4, 2012 at 0:51
1
Solved
I use hibernate in an application with spring boot 1.4.0.RELEASE.
The Entity for the index looks something along the lines of:
@Entity(name = "SearchableTariffItem")
@Indexed
public class Search...
Rotz asked 30/8, 2016 at 13:4
1
Solved
I want to serve my users the most relevant and best results. For example, I'm rewarding records that have a big title, description, attached photos, etc. For context: the records are bicycle routes...
Empanel asked 8/6, 2015 at 12:10
0
In my current application I use hibernate search to index and searching data. It works fine. But when building a cluster of server instances I do not need to use Master Slave clusters using JMS or ...
Decagram asked 15/10, 2015 at 8:31
1
Solved
Hibernate search is sorting results depending on relevance, it is normal.
In addition to that, if two documents are having the same score, they are ordered by their primary keys.
For example,
bo...
Guru asked 13/5, 2015 at 18:21
2
Solved
I am getting this error:
java.lang.NoSuchMethodError: javax.persistence.OneToMany.orphanRemoval()Z
These are the jars in my classpath:
com.sun.faces/jsf-api/jars/jsf-api-2.0.0.jar
com.sun.faces...
Tatter asked 4/1, 2011 at 8:15
1
Solved
Issue: how do we provide hibernate search with a raw lucene query string that includes numeric and non-numeric fields?
Background: we recently upgraded to HibernateSearch 5.0 and many of our queri...
Dietz asked 25/1, 2015 at 15:54
2
I'm trying to use Hibernate Search in my project (writing tests right now using junit + dbunit), but searching query doesn't return any results. I worked on this yesterday and got to conclusion tha...
Medicinal asked 2/11, 2014 at 17:21
2
Solved
How to provide Hibernate Search parameters when using Spring Boot?
...
spring.datasource.driverClassName=org.postgresql.Driver
hibernate.search.jmx_enabled=true
hibernate.search.default.directory...
Lillie asked 24/8, 2014 at 17:36
1
I'm using Infinispan with 6.0.2 with Hibernate Search 4.4.0.
In the begining, after I execute a query like
CacheQuery cq = SearchManager.getQuery(query,Hibernate.class).projection("id");
I use...
Palfrey asked 12/6, 2014 at 7:50
1
Solved
I am using Hibernate 4.3.0.Final / JPA 2.1, Hibernate Search 4.5.0.Final running on WildFly 8.0.0.Final. My application works absolutely fine, but I am getting this hibernate warning when the index...
Punitive asked 28/3, 2014 at 11:58
1
I want to write a ComparatorSource for Lucene 3.6 with which I can accomplish a Round Robin style of sorting:
Let's say we have something like this:
A,A,A,B,C,D,D
And I want to have them sorted ...
Chloroplast asked 3/2, 2014 at 13:20
3
Solved
I am trying to build a better autocomplete feature for my website. I want to use Hibernate Search for this but as far as I experimented it only finds full words for me.
So, my question: is it poss...
Bamako asked 19/3, 2011 at 12:4
1 Next >
© 2022 - 2024 — McMap. All rights reserved.