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
The @Query Annotation doesn't work correctly when using the ReactiveCrudRepository and a parameter of the type Collection.
Looking at the StringQueryUtil class, the non-reactive repository uses ParametersParameterAccessor, the reactive one uses ConvertingParameterAccessor which iterates over the parameter list.
Creating a custom object instead of a Collection also doesn't seem to be feasible to represent a collection of String since all doublequotes are escaped by the StringQueryUtil