Spring Data dynamic query
I'm trying to set up a dynamic query using spring data, basically I have an array with a bunch of characteristics and I need to assemble the query based on those characteristics, pretty much something like "WHERE characteristic = A AND characteristic = B AND characteristic = C" but the amount of characteristics may vary. I noticed that I can use the @Query annotation but is it possible to make the result of the @Query pageable ? Is there any other way to accomplish this? Page<Recipe>