Most voted "querydsl" questions
Querydsl is a framework that allows building strongly typed SQL-like queries for multiple backends including JPA, JDO and SQL in Java.
Learn more…4 questions
Sort by count of
-
4
votes1
answer810
viewsHow to add a folder via Maven to build path
I have an application using Jhipster, to make queries I added querydsl, configured in Maven to generate Q classes, these classes are being generated in the path: target/generated-sources Except that…
-
2
votes0
answers36
viewsElasticsearch aggregations missing categories in Buckets
I need to aggregate products by category The "body" of the products is: p1 = [ ... "categories": ["1","2","3","4"] ]; p2 = [ ... "categories": ["2","1","9","10"] ]; p3 = [ ... "categories":…
-
0
votes1
answer129
viewsQuerydsl with Abstract class
I need to do a query that returns an Abstract object. In this case when my code arrives in ". list()" it launches an Exception, on the other hand, if I use the ". list" but returning an attribute of…
-
0
votes0
answers11
viewsSubstring in a Querydsl
I have a class called Methodoavaliacaoprecojusto, it has 3 fields called link1, Link2 and link3. I want to get a list of all domains without repeating. In that case the links would come…