Querydsl is a framework which enables the construction of type-safe SQL-like queries for multiple backends including JPA, JDO and SQL in Java.
1
vote
2answers
30 views
what is Querydsl 'Q'
I saw an Example of Querydsl but I didn't understand what is QEmployee in that
QEmployee employee = QEmployee.employee;
QEmployee e = new QEmployee("e");
query.from(employee)
...
1
vote
1answer
15 views
Reusable BooleanExpression in QueryDSL
I'm just getting started using QueryDSL with Spring Data JPA. I have a class where I'm storing all of my predicates, so that in my service methods, I can just call findAll() or findOne() on my ...
1
vote
1answer
56 views
+50
QueryDSL joins generate invalid SQL
I'm trying to convert the following SQL query in QueryDSL (JPA, Hibernate provider, Oracle database):
select c.id
, c.name
, count(coalesce(s.company_id_source, t.company_id_target))
...
1
vote
1answer
31 views
QueryDSL - Sum where a join is involed
Given the following classes:
class User {
@OneToMany
Set<Transaction> transactions
}
class Transaction {
BigDecimal money;
}
I'm stumped how to perform an aggregate, as the ...
1
vote
1answer
22 views
QueryDSL: join subquery
I would just like to check - for the QueryDSL version 3.1.1. - is it still impossible to join with a subquery, as is written in an answer here:
JPQL / QueryDSL: join subquery and get aliased column
1
vote
0answers
30 views
Is there a way to eager fetch a lazy relationship through the Predicate API in QueryDSL?
I am using the QueryDslPredicateExecutor from Spring Data JPA project, and I am facing the need to eager fetch a lazy relation. I know that I can use a native JPA-QL query in the Repository interface, ...
1
vote
1answer
50 views
Cypher-QueryDSL: 'My “Q” classes cannot be resolved' compile error (e.g. QPerson)
I'm trying to learn how to use Neo4j cypher with QueryDSL. So I downloaded the sources from the neo4j/cypher-dsl GitHub repository, and imported the project into eclipse as a Maven Project. However, ...
1
vote
1answer
42 views
Constant interpreted as expression in QueryDSL
I have the following query:
DateExpression<Date> endDatePlus7 = DateTemplate.create(Date.class, "DATE_ADD({0},INTERVAL {1} day)", buy.endDate, Expressions.constant(7));
BooleanExpression exp = ...
1
vote
0answers
19 views
QueryDSL delete method
I'm using spring-data-mongodb 1.2.0 with QueryDSL 2.9.0.
Why doesn't the QueryDslPredicateExecutor have a delete(Predicate predicate) method?
Is there a workaround?
3
votes
1answer
84 views
Spring JPA: Query builder versus Criteria Builder , which one to use?
I am going to start new project that would play with very large database, thus would be having lots of database operation.
I have decided to use Spring JPA as my ORM. Now Spring JPA provides various ...
1
vote
1answer
88 views
QueryDSL, java.lang.NoSuchMethodError: com.mysema.query.jpa.JPQLQuery.from([Lcom/mysema/query/types/EntityPath;)Lcom/mysema/query/jpa/JPQLCommonQuery;
Trying to get Query Dsl (version 3.1.1) and Spring Data JPA (version 1.3.1.RELEASE) up and running..
My problem is with this error message ...
java.lang.NoSuchMethodError: ...
2
votes
2answers
96 views
Mapping one-to-many relationship using QueryDSL SQL
Lets say I have this two bean entities:
public class Audit {
private String code;
private java.sql.Timestamp creationDate;
private String creatorId;
private java.sql.Timestamp ...
1
vote
1answer
46 views
QueryDsl, elegant way to make method cascades NULL safe with Java or Groovy
If often run into NPEs when traversing cascading methods that could be null somewhere a long the path. For instance I'd like to query the customer's "salutation" property..
ConstructorExpression ...
1
vote
1answer
54 views
QueryDsl, combining standard JPA and Hibernate's - class level @Where annotations?
I'm wondering if I could team up hibernate annotations, and particularly those class level annotations, with standard JPA annotations in QueryDsl. Like so...
@javax.persistence.Entity
...
1
vote
2answers
57 views
Can't invoke list() method on QueryDslJdbcTemplate
I'm using Spring jdbc to get distinct element of a specific column:
template.newSqlQuery().from(qCustomer).groupBy(qCustomer.name).list(qCustomer.name);
According to the official documentation of ...
1
vote
2answers
54 views
Hibernate QueryDsl Insert statement
In Querydsl 4 Hibernate there are HibernateDeleteClause,HibernateUpdateClause. What about
inserting new records? I've tried to use HibernateUpdateClause but it always generate
an HQL update ==> SLQ ...
1
vote
1answer
83 views
Error with querydsl and mongodb : NoClassDefFoundError Predicate
I am started to use with querydsl for mongodb,
I find some examples on web and tried to use it,
my pom.xml looks like (maybe there is some mistakes in versions...):
...
<!-- Versions -->
...
2
votes
1answer
165 views
QueryDSL,Hibernate delete Child table row on delete of parent table row
I am trying to delete the parent table row and watching if it cascades (the delete) on the child table rows.
Parent and Child Table Entity with java annotations are:
//Table details
@Entity
...
1
vote
1answer
56 views
Does Querydsl not support rand()?
I want to make SQL look like:
select b from Book b order by rand()
how convert that query to Querydsl query?
Is it not supported by Querydsl?
If you know the way to support this query, please ...
1
vote
1answer
48 views
Using QueryDSL in order to query a database for close distance points
I have the following entities in my application:
Member
FamilyAdvertisment
Address
In Member entity:
@OneToOne(cascade=CascadeType.ALL)
private Address address;
...
@OneToMany(fetch = ...
1
vote
0answers
67 views
Issue with apt-maven-plugin and com.mysema.query.apt.roo.RooAnnotationProcessor
I am unable to generate Q classes from my @RooJpaEntity annotated classes.
Here is my plugin configuration:
<plugin>
<groupId>com.mysema.maven</groupId>
...
1
vote
1answer
109 views
apt maven plugin fail to generate Q classes
I am fixing a legacy project that uses Querydsl apt. For some reason the apt-maven-plugin started to fail. The only workaround I found was to use the alter ego maven-processor-plugin.
I have ...
1
vote
1answer
76 views
How get NumberExpression<Integer> result using Spring JPA Data?
I used Spring JPA Data + queryDSL.
It's great solution. but I have one question now.
if I want to execute this query.
select sum(point) from users where userLevel = 2;
I have know how execute ...
1
vote
1answer
48 views
Strict comparison of an @ElementCollection of enums in db and a Set of enums using QueryDSL
I have a FamilyAdvertisement JPA entity that has a collection/set of ChildcareType's enums as follows:
@ElementCollection
private Set<ChildcareType> childcareTypes;
Here is the enum:
public ...
1
vote
1answer
70 views
QueryDSL - select rows with date from timestamp column
Using QueryDSL - is there a way to select rows by date from a timestamp other than using .between? Something like this query:
where convert(date, mytimestamp) = '2013-02-28'
1
vote
1answer
36 views
QueryDSL Hibernate: order by intersection
I've got an entity Coder having 0-n Liking.
My query consists, given one named coder A, in finding all coders having at least one liking in common, ordered by descending count of common likings with ...
0
votes
0answers
128 views
Joining, filtering, and paging results from multiple data sources
Our existing Java application is built directly on top of Spring Data/JPA/Hibernate for data access. For the most part objects are hydrated by Spring Repositories executing JPQL queries. We also rely ...
1
vote
2answers
162 views
Using jodatime in a Mongo entity with Spring Data
I have an entity that will be persisted with Spring Data to a Mongo Database:
@Document
public class MyEntity {
@Id
private String id;
@QueryType(PropertyType.DATETIME)
private ...
1
vote
1answer
142 views
QueryDSL: generate Predicate from PathBuilder
How to replace the following method that uses the generated Q* class and java reflexion with a PathBuilder?
// member vars:
T operand; // can be a BigDecimal or a String
String tableName;
String ...
1
vote
1answer
155 views
QueryDSL: extract Table name from Predicate (BooleanExpression) object
A method is dynamically building a list of Predicates that is later passed to a database service object. In order to create table joins based on the predicate list I need to determine the underlying ...
3
votes
1answer
220 views
Is it possible to use Querydsl without generated query types?
For example JPA Criteria API can be used without generated metamodel. Type safety is lost, but I can create query without prior knowledge of data model using only reflection at runtime. I would like ...
1
vote
2answers
291 views
Spring Data JPA and spring-security: filter on database level (especially for paging)
I'm trying to add method level security to my open source project using annotations and spring-security. The problem I'm now facing are findAll methods especially the ones for Paging (eg. returning a ...
1
vote
3answers
140 views
slf4j-api conflict
I am using querydsl (which depends on sl4j-api 1.6) and arquillian-persistence-api (which depends on slf4j-jdk14 1.5.6).
If I ignore in maven the older version 1.5.6 I get the following message on ...
1
vote
1answer
73 views
Date arithmetic in QueryDSL
I would like to express the following (Oracle) query in QueryDSL:
SELECT * FROM entity WHERE entity.created < (sysdate - entity.delayInDays)
I.e. I want to do date arithmetic. Unfortunately, a ...
1
vote
1answer
156 views
QueryDSL - add subquery into FROM statement
I need to implement sql query like:
SELECT * FROM (SELECT a FROM b WHERE a.z = 1) WHERE rownum <=1;
How I can write this statement with QueryDSL (I am not using JPA, and JDO - only clean sql)?
1
vote
1answer
100 views
Is it possible to use Querydsl CaseBuilder when checking for null-value in a left join?
Is it possible to use the CaseBuilder like the following example? We are using Querydsl with JPA / Hibernate setup.
public class Foo {
Bar bar
}
public class Bar {}
// query:
...
1
vote
1answer
95 views
Querydsl null-safe concatenation
Suppose you have the following data in table corresponding to the class Person, what is the correct way to search null-safely for the concatenation of fields name1 and name2?
@Entity
public class ...
1
vote
1answer
62 views
How do I unit test the querydsl query inside the given method?
public UserEntity findUserByUsername( String username ) {
QUserEntity tableUser = QUserEntity.userEntity;
JPAQuery query = new JPAQuery( entityManager )
.from( tableUser )
...
0
votes
0answers
47 views
Should I test querydsl queries? [closed]
Should I test querydsl queries or should I delegate that to integration tests?
If I should test so how would I do that without having a complete understanding of the framework internals?
I am asking ...
1
vote
1answer
68 views
Setting a NamingStrategy for querydsl-maven-plugin
I'm using querydsl-maven-plugin to generate entities and beans for a bunch of MySQL tables in Maven.
Is there a way to tell the plugin to generate with, say, OriginalNamingStrategy instead of ...
1
vote
0answers
190 views
How to write a complex SQL query in query DSL
I try to calculate percentage of amout of a specific product per total amout of products. I wrote a SQL query that works fine.
But when i try to write in Query DSL I encountred a problem , i really ...
1
vote
0answers
63 views
Invoke Querydsl to read the database tables and generate the Java classes
i use oracle database, and i need to invoke Querydsl to read the database tables and generate the Java classes.
i don't understand how to do that,like below
java.sql.Connection conn = ...;
...
1
vote
2answers
138 views
QueryDsl Set Schema
Using a Spring DataSource and a QueryDsl SQLQueryImpl, how do you specify the schema or set the schema?
Test case is:
Use querydsl-maven-plugin (2.9.0) to connect to DB2 database to generate ...
3
votes
1answer
154 views
Using an SQL query builder library/framework with Android
I am currently working on an Android project and will have to manage database connection and queries to store data. I will not be working with SQLite as provided by the Android device and using it is ...
1
vote
1answer
251 views
Generate QueryDsl Q Classes From Package
How do I generate QueryDsl Q-Classes by only specifying a package name?
Given the source classes reside in my target/generated-sources folder since they are the product of other build plugins (WSDLs, ...
0
votes
1answer
98 views
How to execute HibernateQuery
Im moving to java from C#, this is my frist try at actually writting something and I'm trying to setup my data layer, but I think I'm missing something like DataContext in LINQ to SQL in .NET
Im ...
0
votes
1answer
110 views
Create schema from QueryDSL generated beans and queries
Although I'm not a Ruby user, I really liked the ActiveRecord way of defining a schema in code, and being able to both generate it and query it. I know that this can't be exactly replicated in Java, ...
3
votes
0answers
93 views
queryDSL MathExpressions power function
Query DSL MathExpressions power function has the following syntax.
power
public static <A extends Number & Comparable<?>>
NumberExpression<Double> power(Expression<A> ...
1
vote
1answer
317 views
How to join when building Predicate(s), but without having a JPAQuery instance
When building a Predicate for the Entity Book, I would like to be able
to left join on Category (ManyToMany) to add a AND Predicate on Category.
I could simply achieve that if I have the JPAQuery ...
1
vote
1answer
145 views
how to simplify syntax with dynamic QueryDSL, avoiding multiple “if”
I am building a dynamic query using a FilfetDto
If the user has filled some field in the UI, th e contains some values but not all.
So i have to test each property to construct a query filtering only ...

