I’m working on a reactive Java spring web app using webflux. I’m trying to convert rsql queries received as a param within the endpoint URL. I managed to get the details of this queries converted to Specification object that usually would be then used to query the database with JPA but as I’m not using JPA but webflux and R2DBC, I need to get a org.springframework.data.relational.core.sql.Comparison object instead. Can’t figure out how to do so. Any ideas on how to use rsql string query inside an R2DBC using app ?
Many thanks
I tried to convert the Specification object into a Comparison object. I tried to build a customRsqlVisitor class …