标签: spring rest url spring-rest slash
我正在使用Spring Rest Data,我的实体ID包含正斜杠" /"。 我的人员ID例如是abcd / efg,此URL返回错误400。
http://localhost:8085/myapp/person/abcd/efg
如果我尝试编码斜杠(%2F),我会遇到同样的问题。
http://localhost:8085/myapp/person/abcd%2Fefg
如何在ID中使用斜杠请求此实体?