I am using Spring Rest Data and I have entities with IDs containing forward slashes "/". My person ID is for example abcd/efg and this URL returns error 400.
http://localhost:8085/myapp/person/abcd/efg
If I try to encode the slash (%2F), I get the same problem.
http://localhost:8085/myapp/person/abcd%2Fefg
How do I request this entity with an slash in the ID?