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
The text was updated successfully, but these errors were encountered:
related to #1858
The
@Query
Annotation doesn't work correctly when using theReactiveCrudRepository
and a parameter of the typeCollection
.Looking at the
StringQueryUtil
class, the non-reactive repository usesParametersParameterAccessor
, the reactive one usesConvertingParameterAccessor
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 ofString
since all doublequotes are escaped by theStringQueryUtil
The text was updated successfully, but these errors were encountered: