-
Hi,
Recently, I have started playing around with using the new Java 8 time/date classes in my hibernate models.
So, let's say I have a hibernate model that has the following field
```
OffsetDateTim…
-
Hi ,
I am getting the following error while I click on Novels or Home links in the shop site.
16:13:19,066 WARN [org.hibernate.engine.jdbc.spi.SqlExceptionHelper](http-localhost/127.0.0.1:8080-2) …
-
By default, fields and getters are analyzed during code generation, but I need fields only generation. I found an option for that in `DefaultConfiguration`, but there is no way to set it using maven …
-
Hello QueryDSL,
I have an issue on JPA, linked, I suppose, to the inheritance strategy of my class.
Let's suppose we have this class :
``` java
@Entity
public class Company {
@Id
@Col…
-
**[Grigoris Dimoulas](https://jira.spring.io/secure/ViewProfile.jspa?name=grid)** opened **[DATAJPA-585](https://jira.spring.io/browse/DATAJPA-585?redirect=false)** and commented
In QueryDslJpaReposi…
-
javax.lang.model.type.UnknownTypeException: Unknown type: java.lang.Object&java.io.Serializable&java.lang.Comparable (com.mysema.maven:apt-maven-plugin:1.0.5:process:default:generate-sources)
```
…
-
Our class `User` has a property `roles` which is `@Enumerated(EnumType.STRING) private Set roles;`. When the predicate is `QUser.user.roles.contains(role)` then we are getting the following exception:…
zdila updated
9 years ago
-
Hi,
I am struggling with pretty annoying issue. I am trying to use the QueryDslJdbcTemplate.update method to perform an update by specified Predicate but I am not able to call the method with the gen…
-
I've used to do aliasing by reusing the original path `SFoo.bar.nullif(0).as(SFoo.bar)`. This nowadays leads to `NULLIF("foo"."bar", 0 ) AS "foo"."bar"` but it used to be `NULLIF("foo"."bar", 0 ) AS …
-
In Querydsl 3.x the following worked:
``` java
new JPAQuery(em).
select(QUser.user).
orderBy(QUser.user.firstname.desc()).
toString();
```
In 4.0 this results in an `IllegalArgumentException`:…