python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I reuse a field in several bridges in Hibernate Search 6?
In Hibernate Search 5 I had several custom bridges that populated the same field. That was handy so that I can perform a query on just one field. Now if I try to do it I receive this error:
HSEARCH600...
lechonex
Votes: 0
Answers: 1
Duplicate index field definition:
How to handle this scenario? Here is the property defined in my entity class
@Column(nullable = false)
@NotNull
@ApiModelProperty(required = true)
@Size(min = 3, max = 255)
@GenericField(sortable = So...
Prashant Kamble
Votes: 0
Answers: 1
How to be compatible with like syntax after upgrading Hibernate Search 6.x version
I recently upgraded hibernate search from version 5.x to version 6.x, and encountered some problems. Most grammars can be processed by referring to the document, but there is a like grammar that canno...
young
Votes: 0
Answers: 1
Hibernate search 6 , refresh index after updating entity
I didn't find unfortunatly a solution for my Problem and I need help.
I have tow entity like that
@Table(name = "A")
@Entity
@Indexed
@Getter
@Setter
@NoArgsConstructor
public class EntityA ...
tissa
Votes: 0
Answers: 1