You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[WARNING] Annotation processing without compilation requested but no processors were found.
Ultimately, no Q... classes are generated. Let me know if I'm doing something wrong, but the Spring Boot version 3.4 with its graphql-starter doesn't work with repository that extends QuerydslPredicateExecutor.
The text was updated successfully, but these errors were encountered:
Make sure to use the jakarta classifier for all Querydsl artifacts, including the annotation processor querydsl-apt. Querydsl provides artifacts with the jakarta classifier for transition from javax to jakarta.
Perhaps the Spring page I referenced in my OP should be updated, but you labelled this issue accordingly already. Thanks again Mark!
mp911de
changed the title
QueryDSL setup requires javax annotations, jakarta.persistence.* don't work
Update documentation to use jakarta.persistence.* for Querydsl setup
Feb 13, 2025
The issue comes from us using javax annotations in Spring GraphQL 1.0.x and not updating the docs with the migration to Jakarta Annotations/Spring Boot 3.
Hi,
I tried to follow these instructions https://docs.spring.io/spring-graphql/reference/data.html#data.querydsl.build but even with querydsl 5.1.0 I had no success. I think I would have to go back to
javax.persistence.Entity
(and other javax stuff) but that feels wrong with Spring Boot 3.4.0.With
and
I'm warned that
Ultimately, no
Q...
classes are generated. Let me know if I'm doing something wrong, but the Spring Boot version 3.4 with its graphql-starter doesn't work with repository that extendsQuerydslPredicateExecutor
.The text was updated successfully, but these errors were encountered: