Top "Querydsl" questions

Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends including JPA, MongoDB and SQL in Java.

How to make union query on Elasticsearch?

I would like to make a query with UNION and limit. I can explain that query on mysql. (SELECT * FROM …

elasticsearch querydsl elasticsearch-query
Using querydsl how can I check against a specific object from a set of objects that result from a One to Many relationship?

I have a Person JPA entity, and my Person has multiple addresses (OneToMany relationship from Person to Address). I want …

java jpa querydsl
spring mongo querydsl Can't find a codec for class java.time.LocalDateTime

I use spring mongo data rest and querydsl the domain: has a property: @DateTimeFormat(iso = ISO.DATE_TIME) private LocalDateTime …

spring-data spring-data-rest querydsl spring-mongodb
How can I dynamically add where clauses with querydsl?

I've been looking for some time now on the documentation and tried several things but I was not able to …

java querydsl
Java 11 + QueryDSL 4 + Gradle 5 + SpringBoot 2.1- not generating QClasses

I’m trying to integrate QueryDSL, Gradle and Springboot in versions from title. I added annotationProcessors to gradle but Intellij …

spring-boot gradle querydsl lombok
Simple (E1 AND E2) OR (E3 AND E4) expression in QueryDSL

How do I express in QueryDSL where clause in form: WHERE (E1 AND E2) OR (E3 AND E4) E1..E4 …

querydsl