I am trying to get a Spring Solr query using a repository
findByXOrYAndZ
The precedence should be as follows:
(X OR Y) AND Z
I am using a SolrCrudRepository but I guess any of the repo would work.
How can I enforce this?
I am trying to get a Spring Solr query using a repository
findByXOrYAndZ
The precedence should be as follows:
(X OR Y) AND Z
I am using a SolrCrudRepository but I guess any of the repo would work.
How can I enforce this?
Copyright © 2021 Jogjafile Inc.
You could annotate the repository method with a
@Query
and give an arbitrary query to it.For example: