客户端在服务器上发送(实现无关紧要):

/path/items/ + urlencode(id, SOME_ENCODING)

考虑结果URL将是:
/path/items/my%2Fkey

因此,我在服务器上:
@RequestMapping(value = "/path/items/{identifier}", method = RequestMethod.GET)
public Item get(@PathVariable String identifier) {
try {
    return DAO.getItemByIdentifier(URLDecoder.decode(identifier, SOME_ENCODING))
}
catch (UnsupportedEncodingException e) {
...
}

在Spring内部有什么方法可以做到这一点?我的意思是,已经解码了标识符,因此我可以:
@RequestMapping(value = "/path/items/{identifier}", method = RequestMethod.GET)
    public Item get(@PathVariable String identifier) {
return DAO.getitemByidentifier(identifier); // already decoded!
    }

最佳答案

您应该在server.xml的tomcat连接器中设置URIEncoding。

看看:http://tomcat.apache.org/tomcat-5.5-doc/config/http.html

//编辑:

您还可以尝试在web.xml(或Java类)中设置编码过滤器,如下所示:
Spring/Rest @PathVariable character encoding

关于java - 在哪里以及如何解码@PathVariable,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25944964/

10-10 01:41