I have below collection and embedded documents And ContactDetails.java looks like below: StateDetails look like below: And AddressDetails loo ...
I have below collection and embedded documents And ContactDetails.java looks like below: StateDetails look like below: And AddressDetails loo ...
Working with queryDSL and mySQL: I have a field from in the time_check table to which I want to add timetrackAutoStop from the location table as hour ...
I a trying to write below query in querydsl How can I join on array if ids I tried registering unnest function too But this is also not working ...
In Blaze Persistence with querydsl integration, it supports subquery in join statement. So I wonder how to combine projects with CTE entity in a join- ...
The above query is trying to get all the Pets which are authorised for the account=5 user. get_authorized_pet_id is a native database query which do ...
Query DSL has castToNum() but is there anything to convert LocalDateTime(job_date_time) to Date ? Java Approach How can I cast this expression t ...
I'm trying to generate q-classes using Spring Boot 3, with Jakarta Persistence, QueryDsl, Gradle and Intellij. But I can't generate q-classes after ru ...
I am writing Java code fetching data from SQL Server DB. I am using Spring Data repository and QueryDSL Predicate with findAll(Predicate ..) I need t ...
Working with QueryDsl and JPA, EclipseLink, I need to update the same column for a list of entities and store that modifications in the database, Is t ...
I have three tables connected together and I am trying to pull the data from three tables using queryDSL. Data Entities @Entity @Table(name ...
Is there a way to write the SQL function ISNULL in a JPAQuery using QueryDSL when it's part of the selected data? For example, I have the native SQL q ...
Here is my pom: I'm unable to start the Spring boot application because of the below error: I tried to print the dependency tree and here it is: ...
I am new to Elastic Search, have been reading a lot about it, but I stumbled at one requirement. Consider a field of type text in all the documents i ...
When I run query with parameter Param<LocalDateTime>, using directly SQLServer2012Templates everything works fine. [DEBUG] [||] com.querydsl.sql ...
I am a student who is learning spring and jpa recently. While developing 'get api' with conditions, I came to think about which method is advantageous ...
I have a complex, reusable method that returns a BooleanExpression to filter a Q object QPost. How do I use this BooleanExpression in a Hibernate Sea ...
The first two levels are triggered correctly (speed Violation.fact 1.car.vrp(NullPointerException, vrp is null)), but then Nullpointerexception. I do ...
I have an object message and an authenticated user. I want to only show a message to the authenticated user, if they are the author or have a specific ...
I have a query that needs a dynamic SQL WHERE clauses based on filters. Issue It may give me a NullPointerException (NPE) if I'm adding an "AND" whi ...
I am trying to use MapStruct alongside with QueryDsl,Spring Boot 3 and Java 17 but it seems like the maven-compiler-plugin I use for MapStruct prevent ...