Skip to content
Advertisement

HQL Hibernate query search check if list contains all elements of another list

I came across a problem that I cannot think of a solution. So I got this piece of code:

JavaScript

The problem with this piece of code is that when someone searches with more than one tag (for example: #video, #image), it returns both posts with two tags and one tag.

I would like it to return a post with both #video, and #image in its tags. For it to work, I somehow need to check if the list contains all elements of another list.

I searched for a solution for a while and tried different approaches so far, nothing.

I tried replacing “tag in (:allowedTags)” with “post.tags in (:allowedTags)” but that throws that my SQL is invalid.

Advertisement

Answer

Two years later I got my answer. I am now using Spring Boot and SpEL expressions so bear with me. This query does a little more than just my original idea but you can extract what you need from it.

JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement