Is it possible to set a Hibernate Query Hint by default in a Spring Boot application?

99 views Asked by At

I must use the Hibernate Query Hint HINT_PASS_DISTINCT_THROUGH in every requests that uses DISTINCT keyword in my Spring Boot application. Instead of setting the hint with the @QueryHint annotation or the Query.setHint method, I'm wondering if there's a way to set it once for all queries, for example with an application property?

0

There are 0 answers