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
If there are two instances of a CrudRepository for a given domain class, one unsecured and one secured by using @PreAuthorize, it's totally ambiguous which repository is used if request parameters or path variables are converted to instances of the domain class (which is done by DomainClassConverter respectively its inner class ToEntityConverter).
If the unsecured repository is used everything works fine, if the secured one is used - bang.
This is related to DATAREST-923, made a similar comment over there