Infobip Spring Data Querydsl provides new functionality that enables the user to leverage the full power of Querydsl API on top of Spring Data repository infrastructure.
Apache License 2.0
281
stars
56
forks
source link
[BUG] infobip-spring-data-r2dbc-querydsl-boot-starter can not work with @ org.springframework.data.annotation.Transient #57
exampel is here, checkout branch feature/Transient-annotation-bug and then run command mvn clean -Dmaven.test.skip=true package && java -jar r2dbc-querydsl-lombok-mapstruct-server/target/r2dbc-querydsl-lombok-mapstruct-server-0.0.1-SNAPSHOT.jar can see the error message.
in this example com.example.demo.repository.OrderRepository extends ReactiveCrudRepository so Order can support @Transient but UserRepository extends QuerydslR2dbcRepository cannot.
exampel is here, checkout branch
feature/Transient-annotation-bug
and then run commandmvn clean -Dmaven.test.skip=true package && java -jar r2dbc-querydsl-lombok-mapstruct-server/target/r2dbc-querydsl-lombok-mapstruct-server-0.0.1-SNAPSHOT.jar
can see the error message.in this example
com.example.demo.repository.OrderRepository
extendsReactiveCrudRepository
soOrder
can support@Transient
butUserRepository
extendsQuerydslR2dbcRepository
cannot.