-
``` java
com.mmnaseri.utils.spring.data.error.DataOperationDefinitionException: Encountered an error while resolving operation metadata: public abstract java.util.List com.bee2c.platform.repository.Fb…
-
The basis: I have these three entities:
``` java
@Entity(name = "USER")
public class User {
@OneToMany(fetch = FetchType.LAZY)
private Set rights;
@OneToMany(fetch = FetchType.LAZY)
p…
-
For code case in #69 #54 with 1.1.1
```
com.mmnaseri.utils.spring.data.error.DataOperationDefinitionException: Encountered an error while resolving operation metadata: public abstract java.util.List …
-
I've a use case where I would like the use the PostgreSQL full text support ('tsvector' sql type) within the context of a QueryDSL query.
In order to be able to do this I had to implement the followi…
-
hai all,
i'm using Querydsl 3.7.2 + JPA and have an entities like this
> class Order {
> Long id;
> List items;
> }
>
> class Item {
> Order order;
> String name;
> Date expiredDate;
> }
by d…
ghost updated
8 years ago
-
Currently, to express COUNT(DISTINCT field) for a single field, I can write `uniqueResult(q.field.countDistinct())`, but there is no syntax for multiple fields like COUNT(DISTINCT field1, field2, ...)…
-
Hello I'm having an hibernate error using liquibase:diff command, here is a trace, is there someone how already encounter it ? It seems that's related to hibernate Converters
mvn liquibase:diff -X
`…
-
**[Kris Bloe](https://jira.spring.io/secure/ViewProfile.jspa?name=chrisbloe)** opened **[DATAJPA-765](https://jira.spring.io/browse/DATAJPA-765?redirect=false)** and commented
This major version chan…
-
```
What steps will reproduce the problem?
1. Database setup with JNDI and java melody.
2. capsulate the JNDI bean :
result is error cause I can't get to
mine real connection.
What …
-
Add support for Hibernate 4.3.x.
Add also support of new JPA 2.1 capabilities, ex : `treat` for `.as(Class)` when entities are joined.