gpt4 book ai didi

java - 处理 REST API 中的特殊字符

转载 作者:行者123 更新时间:2023-11-28 22:01:33 28 4
gpt4 key购买 nike

我有以下网址

http://context_path/info/abc/def

转换为

http://context_path/info/abc%2Fdef

我的 Controller 映射在哪里:

@RequestMapping(value = "/info/{id}", method = RequestMethod.GET)

此处 'id' 包含正斜杠 (/)。因此,当我点击 URL 时,我得到了 400 Bad Request

我知道可能的解决方案

  • 将 tomcat 设置为允许正斜杠。
  • 使用 URL 编码。
  • 使用 @RequestParam 代替 @PathVariable

但以上解决方案对我来说是不可能的。

问。是否有任何其他解决方案(使用正则表达式或更改映射或其他任何东西)来解决这个问题?还有 tomcat 如何正确处理其他特殊字符 ('.' , ''' , ':' , ',') 并且 Controller 被击中但不是 '/' .

已尝试但无法正常工作:

1) @RequestMapping(value = "/info/{id:.*}", method = RequestMethod.GET)
2) @RequestMapping(value = "/info/{id}/**", method = RequestMethod.GET)
3) @RequestMapping(value = "/info/**", method = RequestMethod.GET)

最佳答案

这不是很好,但你可以使用 Base64 transformation .

因此您的客户端将发送一个编码的 id 并且您将其解码回您的 Controller 。

import org.apache.commons.codec.binary.Base64;

@RequestMapping(value = "/info/{id}", method = RequestMethod.GET)
public String get(@PathVariable String id) {
final String realId = new String(new Base64(true).encodeBase64URLSafe(id));
[...]
}

编辑:您应该使用 Base64 的 url 保存实现:

关于java - 处理 REST API 中的特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40881080/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com